Skip to content

Commit

Permalink
Test and lint workflows use flat directory layout
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamPattinson committed Dec 3, 2024
1 parent 8250f68 commit 928a901
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -32,4 +32,4 @@ jobs:
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "./src ./tests"
src: "."
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
python -m pip install .[test]
- name: Test with pytest
run: |
pytest -vv ./tests
pytest -vv test_simplesimdb.py

0 comments on commit 928a901

Please sign in to comment.