-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Refresh tap * Make Ruff happy * Enable integration tests * Update SQLAlchemy URL * Constrain sqlalchemy * Update default driver * Install sqlalchemy mypy plugin * Update triggers
- Loading branch information
1 parent
e1be666
commit 0444ea8
Showing
13 changed files
with
1,027 additions
and
1,040 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "12:00" | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
labels: [deps] | ||
groups: | ||
actions: | ||
patterns: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
name: Test tap-myqsql | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
push: | ||
branches: [main] | ||
paths: | ||
- tap_mysql/** | ||
- tests/** | ||
- poetry.lock | ||
- pyproject.toml | ||
- .github/workflows/test.yml | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
- tap_mysql/** | ||
- tests/** | ||
- poetry.lock | ||
- pyproject.toml | ||
- .github/workflows/test.yml | ||
workflow_dispatch: | ||
inputs: {} | ||
|
||
jobs: | ||
tests: | ||
|
@@ -15,7 +26,7 @@ jobs: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
|
||
steps: | ||
- name: Checkout code | ||
|
@@ -24,15 +35,15 @@ jobs: | |
- name: Fix Permissions | ||
run: | | ||
chmod 777 -R ./ssh_tunnel/ssh-server-config | ||
- name: Set up MySQL containers (SSH Included) | ||
run: | | ||
docker compose -f docker-compose.yml up -d | ||
- uses: isbang/[email protected] | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4.6.0 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
|
@@ -42,8 +53,12 @@ jobs: | |
pip --version | ||
- name: Install Poetry | ||
run: | | ||
pip install poetry | ||
pipx install poetry | ||
poetry --version | ||
- name: Install Tox | ||
run: | | ||
pipx install tox | ||
tox --version | ||
- name: Install dependencies | ||
run: | | ||
poetry install | ||
|
@@ -52,7 +67,6 @@ jobs: | |
poetry run pytest | ||
- name: Run lint | ||
run: | | ||
poetry run tox -e lint | ||
tox -e typing | ||
# To test mysql client 1. docker exec -it 012c /bin/bash (ssh server) 2. apk add mysql mysql-client 3. mysql -h 10.5.0.5 -P 3306 -u root -ppassword | ||
# To test mysql client 1. docker exec -it 012c /bin/bash (ssh server) 2. apk add mysql mysql-client 3. mysql -h 10.5.0.5 -P 3306 -u root -ppassword |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
ci: | ||
autofix_prs: false | ||
autoupdate_schedule: weekly | ||
autoupdate_commit_msg: 'chore: pre-commit autoupdate' | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-json | ||
- id: check-toml | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.2.0 | ||
hooks: | ||
- id: ruff | ||
args: [--fix] | ||
- id: ruff-format |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(), | ||
# Using 127.0.0.1 instead of localhost because of mysqlclient dialect. | ||
# See: https://stackoverflow.com/questions/72294279/how-to-connect-to-mysql-databas-using-github-actions | ||
"sqlalchemy_url": "mysql+mysqldb://root:[email protected]:3306/melty", | ||
"sqlalchemy_url": "mysql+pymysql://root:[email protected]:3306/melty", | ||
} | ||
|
||
NO_SQLALCHEMY_CONFIG = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(), | ||
# Using 127.0.0.1 instead of localhost because of mysqlclient dialect. | ||
# See: https://stackoverflow.com/questions/72294279/how-to-connect-to-mysql-databas-using-github-actions | ||
"sqlalchemy_url": f"mysql+mysqldb://root:[email protected]:3306/melty", | ||
"sqlalchemy_url": f"mysql+pymysql://root:[email protected]:3306/melty", | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
SAMPLE_CONFIG = { | ||
# Using 127.0.0.1 instead of localhost because of mysqlclient dialect. | ||
# See: https://stackoverflow.com/questions/72294279/how-to-connect-to-mysql-databas-using-github-actions | ||
"sqlalchemy_url": f"mysql+mysqldb://root:[email protected]:3306/melty", | ||
"sqlalchemy_url": f"mysql+pymysql://root:[email protected]:3306/melty", | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
TABLE_NAME = "test_replication_key" | ||
SAMPLE_CONFIG = { | ||
"sqlalchemy_url": "mysql+mysqldb://root:[email protected]:3306/melty", | ||
"sqlalchemy_url": "mysql+pymysql://root:[email protected]:3306/melty", | ||
"ssh_tunnel": { | ||
"enable": True, | ||
"host": "127.0.0.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,15 @@ | ||
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy | ||
|
||
[tox] | ||
envlist = py39 | ||
; envlist = py37, py38, py39 | ||
isolated_build = true | ||
envlist = py38,py39,py310,py311,py312 | ||
|
||
[testenv] | ||
whitelist_externals = poetry | ||
|
||
commands = | ||
poetry install -v | ||
poetry run pytest | ||
poetry run black --check tap_mysql | ||
poetry run flake8 tap_mysql | ||
|
||
[testenv:pytest] | ||
# Run the python tests. | ||
# To execute, run `tox -e pytest` | ||
envlist = py37, py38, py39 | ||
allowlist_externals = poetry | ||
commands = | ||
poetry install -v | ||
poetry run pytest | ||
|
||
[testenv:format] | ||
# Attempt to auto-resolve lint errors before they are raised. | ||
# To execute, run `tox -e format` | ||
[testenv:typing] | ||
commands = | ||
poetry install -v | ||
poetry run black tap_mysql | ||
poetry run isort tap_mysql | ||
|
||
[testenv:lint] | ||
# Raise an error if lint and style standards are not met. | ||
# To execute, run `tox -e lint` | ||
commands = | ||
poetry install -v | ||
poetry run black --check --diff tap_mysql/ | ||
poetry run isort --check tap_mysql | ||
poetry run flake8 tap_mysql | ||
|
||
[flake8] | ||
ignore = W503 | ||
max-line-length = 88 | ||
max-complexity = 10 | ||
|
||
[pydocstyle] | ||
ignore = D105,D203,D213 | ||
poetry install -v --with typing | ||
poetry run mypy tap_mysql |