Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PyPI publishing fixes #80

Merged
merged 6 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 47 additions & 15 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,43 @@ on:
tags:
- "**" # Push events to every tag including tags with slashes

# How to publish a new version:
# 1. Update all hardcoded versions in this file (automation TBD): plugin's, Airflow's, and Python's ones.
# Pick the latest Airflow's and Python's versions supported by the plugin.
# 2. Publish a tag with a name equal to the plugin's current version and "v" prefix: e.g. v1.0.0.

jobs:
run-local-tests:
name: Test locally on ClickHouse
runs-on: ubuntu-latest
services:
clickhouse:
image: clickhouse/clickhouse-server
ports:
- 9000/tcp
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install \
-r requirements.txt \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.0/constraints-3.12.txt"
- name: Run tests on ClickHouse server
env:
AIRFLOW_CONN_CLICKHOUSE_DEFAULT: "clickhouse://localhost:${{ job.services.clickhouse.ports['9000'] }}"
PYTHONPATH: "${{ github.workspace }}/src" # for tests to import src/airflow_clickhouse_plugin
run: |
cd tests
python -m unittest

build:
name: Build distribution 📦
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -35,15 +67,13 @@ jobs:
name: Publish to TestPyPI
needs:
- build
- run-local-tests
runs-on: ubuntu-latest

environment:
name: testpypi
url: https://test.pypi.org/p/airflow-clickhouse-plugin

permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- name: Download distribution packages
uses: actions/download-artifact@v3
Expand All @@ -62,26 +92,28 @@ jobs:
- publish-to-testpypi
services:
clickhouse:
image: yandex/clickhouse-server
image: clickhouse/clickhouse-server
ports:
- 9000/tcp
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: "3.12"
- name: Install airflow-clickhouse-plugin from TestPyPI
run: |
python -m pip install --upgrade pip
python -m pip install \
--index-url https://test.pypi.org/simple \
--extra-index-url https://pypi.org/simple \
airflow-clickhouse-plugin[common.sql]==1.1.0
airflow-clickhouse-plugin[common.sql]==1.3.0 \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.0/constraints-3.12.txt"
- name: Run tests on ClickHouse server
env:
AIRFLOW_CONN_CLICKHOUSE_DEFAULT: "clickhouse://localhost:${{ job.services.clickhouse.ports['9000'] }}"
# "src" is not added to PYTHONPATH to run tests using pip-installed version
run: |
cd tests # run tests using pip-installed version
cd tests
python -m unittest

publish-to-pypi:
Expand All @@ -95,7 +127,6 @@ jobs:
url: https://pypi.org/p/airflow-clickhouse-plugin
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- name: Download distribution packages
uses: actions/download-artifact@v3
Expand All @@ -112,35 +143,36 @@ jobs:
- publish-to-pypi
services:
clickhouse:
image: yandex/clickhouse-server
image: clickhouse/clickhouse-server
ports:
- 9000/tcp
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: "3.12"
- name: Install airflow-clickhouse-plugin from PyPI
run: |
python -m pip install --upgrade pip
python -m pip install airflow-clickhouse-plugin[common.sql]==1.1.0
python -m pip install \
airflow-clickhouse-plugin[common.sql]==1.3.0 \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.0/constraints-3.12.txt"
- name: Run tests on ClickHouse server
env:
AIRFLOW_CONN_CLICKHOUSE_DEFAULT: "clickhouse://localhost:${{ job.services.clickhouse.ports['9000'] }}"
# "src" is not added to PYTHONPATH to run tests using pip-installed version
run: |
cd tests # run tests using pip-installed version
cd tests
python -m unittest

upload-to-github-release:
name: Sign and upload to GitHub Release
needs:
- publish-to-pypi
runs-on: ubuntu-latest

permissions:
contents: write # IMPORTANT: mandatory for making GitHub Releases
id-token: write # IMPORTANT: mandatory for sigstore

steps:
- name: Download distribution packages
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/sensors/test_clickhouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_defaults(self):

def test_failure(self):
is_failure_mock = mock.Mock(return_value=True)
with self.assertRaisesRegexp(AirflowException, 'is_failure returned True'):
with self.assertRaisesRegex(AirflowException, 'is_failure returned True'):
ClickHouseSensor(
task_id='test3', # required by Airflow
sql='SELECT 3',
Expand Down