aboutsummaryrefslogtreecommitdiffstats
path: root/noxfile.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2021-05-03 15:57:51 +0100
committerMatthew Lemon <matt@matthewlemon.com>2021-05-03 15:57:51 +0100
commitdc08746e8cf5017b1cbb923eca296f99318e0b25 (patch)
tree0fa6baa8b17187bb9fc357d1abe0e37bb01b9aa9 /noxfile.py
parent9b81638da51bf62dd921185317804bad44f93e49 (diff)
further fixes to remove poetry and fix actions
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/noxfile.py b/noxfile.py
index 31684fd..cf6d785 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -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")