try to run from within nox w/ burnettk

This commit is contained in:
jasquat 2022-05-20 13:49:02 -04:00
parent c5a57a7c65
commit 921764608b
2 changed files with 3 additions and 3 deletions

View File

@ -160,9 +160,6 @@ jobs:
- name: Run Nox
run: |
ls -l .
pwd
./bin/recreate_db clean
nox --force-color --python=${{ matrix.python }}
- name: Upload coverage data

View File

@ -132,6 +132,9 @@ def tests(session: Session) -> None:
session.install(".")
session.install("coverage[toml]", "pytest", "pygments")
try:
session.run("ls")
session.run("pwd")
session.run("./bin/recreate_db", "clean")
session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs)
finally:
if session.interactive: