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 | |
parent | 9b81638da51bf62dd921185317804bad44f93e49 (diff) |
further fixes to remove poetry and fix actions
-rw-r--r-- | noxfile.py | 5 | ||||
-rw-r--r-- | requirements.txt | 3 | ||||
-rw-r--r-- | requirements_dev.txt | 9 |
3 files changed, 15 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") diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c7179c1 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +bcompiler-engine==1.1.14 +click==7.1.2 +python-dateutil==2.8.1 diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000..81c15dd --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,9 @@ +pytest==5.4.1 +pytest-cov==2.7.1 +coverage==5.1 +nox==2019.11.9 +pyinstaller==4.2 +wheel==0.34.2 +pefile==2019.4.18 +pywin32-ctypes==0.2.0 + |