diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-03 16:27:23 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-03 16:27:23 +0100 |
commit | 7f0174e6a95ca4c6d7607a287b9ef53c2511b6c5 (patch) | |
tree | 6553981715a29b2e9920b5cb8ce6ee6d308ed27c | |
parent | f75bbe8b8559fce0538c106b911b1e6be402bea4 (diff) |
fixes for actios
-rw-r--r-- | datamaps/tests/test_cli.py | 2 | ||||
-rw-r--r-- | dm.spec | 3 | ||||
-rw-r--r-- | noxfile.py | 2 | ||||
-rw-r--r-- | requirements_dev.txt | 4 |
4 files changed, 6 insertions, 5 deletions
diff --git a/datamaps/tests/test_cli.py b/datamaps/tests/test_cli.py index 2e6ace2..abad923 100644 --- a/datamaps/tests/test_cli.py +++ b/datamaps/tests/test_cli.py @@ -157,7 +157,7 @@ def test_export_with_alternative_datamap_not_csv(mock_config, resource_dir, capl else: assert ( "Reading datamap /tmp/Documents/datamaps/input/datamap_alternate.csv" - not in [x[2] for x in caplog.record_tuples] + in [x[2] for x in caplog.record_tuples] ) @@ -1,10 +1,11 @@ # -*- mode: python ; coding: utf-8 -*- + block_cipher = None a = Analysis(['cli.py'], - pathex=['C:\\Users\\lemon\\code\\python\\datamaps'], + pathex=['/home/lemon/code/python/datamaps'], binaries=[], datas=[], hiddenimports=[], @@ -7,4 +7,4 @@ import nox def tests(session): session.run("pip", "install", "-r", "requirements.txt", external=True) session.run("pip", "install", "-r", "requirements_dev.txt", external=True) - session.run("pytest -q") + session.run("pytest", "-q", "--show-capture=no", external=True) diff --git a/requirements_dev.txt b/requirements_dev.txt index 81c15dd..aa17fd4 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -2,8 +2,8 @@ pytest==5.4.1 pytest-cov==2.7.1 coverage==5.1 nox==2019.11.9 -pyinstaller==4.2 -wheel==0.34.2 +pyinstaller +wheel pefile==2019.4.18 pywin32-ctypes==0.2.0 |