Skip to content

Commit

Permalink
change base tmp path to fix permissions errors
Browse files Browse the repository at this point in the history
  • Loading branch information
benbariteau committed Jun 4, 2024
1 parent aa85065 commit be195bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/.coverage
/.coverage.*
/.tox
/.tmp

*.deb
*.egg-info
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ skip_missing_interpreters = true

[testenv]
deps = -rrequirements-dev.txt
allowlist_externals =
rm
mkdir
commands =
coverage erase
coverage run -m pytest -vv {posargs:tests}
rm -rf .tmp
mkdir .tmp
coverage run -m pytest -vv --basetemp=.tmp {posargs:tests}
coverage combine
coverage report --show-missing
pre-commit run --all-files
Expand Down

0 comments on commit be195bd

Please sign in to comment.