mirror of
https://github.com/sartography/spiffworkflow-backend.git
synced 2025-02-23 04:48:09 +00:00
try to run from within nox w/ burnettk
This commit is contained in:
parent
c5a57a7c65
commit
921764608b
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
@ -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
|
||||
|
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user