Skip to content

Commit

Permalink
Remove those pesky quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-hoffman committed Jan 14, 2025
1 parent c139d75 commit 61e0305
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 61e0305

Please sign in to comment.