Skip to content

Commit

Permalink
fix: remove ruff pytest plugin and run separately
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Jul 10, 2024
1 parent 285c751 commit 05a6239
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: 📥 Install project
run: pip install -e .[tests]

- name: 🧶 Lint
run: ruff check --output-format=github .

- name: 🧪 Test with pytest
run: pytest

Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ arc.dir
.pytest_cache
__pycache__

.env/
.env
.DS_Store
cov.xml
.coverage*
cert.pem
key.pem
.env
env
venv/pyvenv.cfg
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ minversion = "6.0"
testpaths = ["tests"]
norecursedirs = [".env", "data", "maps", ".github", ".vscode"]
console_output_style = "count"
addopts = "--ruff --cov-branch --cov=masquerade --cov-report term --cov-report xml:cov.xml --instafail"
addopts = "--cov-branch --cov=masquerade --cov-report term --cov-report xml:cov.xml --instafail"
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
"callee==0.3.*",
"pytest-cov==5.*",
"pytest-instafail==0.5.*",
"pytest-ruff==0.*",
"pytest-watch==4.2.*",
"pytest==8.*",
"requests-mock==1.12.*",
Expand Down

0 comments on commit 05a6239

Please sign in to comment.