diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-03 15:57:51 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-03 15:57:51 +0100 |
commit | dc08746e8cf5017b1cbb923eca296f99318e0b25 (patch) | |
tree | 0fa6baa8b17187bb9fc357d1abe0e37bb01b9aa9 /noxfile.py | |
parent | 9b81638da51bf62dd921185317804bad44f93e49 (diff) |
further fixes to remove poetry and fix actions
Diffstat (limited to '')
-rw-r--r-- | noxfile.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -5,5 +5,6 @@ import nox @nox.session(python=["3.7", "3.8"]) def tests(session): - session.run("poetry", "install", external=True) - session.run("pytest") + session.run("pip", "install", "-r", "requirements.txt", external=True) + session.run("pip", "install", "-r", "requirements_dev.txt", external=True) + session.run("pytest -q") |