Skip to content

Commit bc7f81e

Browse files
authored
Housekeeping of Python client repository (#103)
After working on reproducible package proparation for Python client it's been found that the Python client repository had some extra code added and docs and tests were placed in a wrong directory. As of #93, we have duplicated airflow_client code: * airflow_client.client - this is the one that should be used * airflow_client.airflow_client - this is the one that is added accidentally (and it is a copy of the `client` one) Also `docs` and `tests` are generated in "airflow_client" package, but this is wrong, both docs and tests should be at the top-level of the repository. This PR: * deletes the extra code * moves "docs" and "test" folders to the top-level of the project.
1 parent 4775ec8 commit bc7f81e

File tree

401 files changed

+3
-50095
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

401 files changed

+3
-50095
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ jobs:
3737
- name: Run pytest
3838
run: |
3939
pip install -r test-requirements.txt
40-
pytest airflow_client/test
40+
pytest test
41+
env:
42+
PYTEST_ADDOPTS: "--color=yes"

airflow_client/airflow_client/__init__.py

-45
This file was deleted.

airflow_client/airflow_client/api/__init__.py

-20
This file was deleted.

0 commit comments

Comments
 (0)