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

[MAINTENANCE] Add extras to setup.cfg for optional deps #17

Merged
merged 9 commits into from
Jan 14, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove those pesky quotes
tyler-hoffman committed Jan 14, 2025
commit 61e03056053b15080e1142588aa262f9f3646916
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install Library
run: pip install ".[postgresql,tests]"
run: pip install .[postgresql,tests]

- name: Setup
run: |
@@ -75,7 +75,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install Library
run: pip install ".[tests,spark]"
run: pip install .[tests,spark]

- name: Setup
run: |
@@ -109,7 +109,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install Library
run: pip install ".[tests,spark]"
run: pip install .[tests,spark]

- name: Setup
run: |
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
python-version: 3.12

- name: Install Library
run: pip install ".[lint]"
run: pip install .[lint]

- name: Ruff Formatter
run: ruff format --check .
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: Install Library
run: pip install ".[tests]"
run: pip install .[tests]

- name: Run Unit Tests
run: pytest -vvv -m unit tests/unit