summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Roztocil <jakub@roztocil.co>2020-08-17 20:35:04 +0200
committerJakub Roztocil <jakub@roztocil.co>2020-08-17 20:35:04 +0200
commit531dee162620f3a9e756dda8fc782c58ef64c578 (patch)
tree892d2e3ed955b8f75f3229e82c4b777c0a1e8b69
parent0179a7c9596380cac9148fe3826e92fb447ee4de (diff)
Fix setup.py
-rw-r--r--setup.py2
-rw-r--r--tox.ini4
2 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index d8816b2..9831f3a 100644
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ def read_description(filename):
def read_requirements(filename):
try:
with open(filename) as f:
- result = [line.rstrip() for line in f]
+ return [line.rstrip() for line in f]
except IOError:
raise IOError(os.getcwd())
diff --git a/tox.ini b/tox.ini
index 6139416..b0aa036 100644
--- a/tox.ini
+++ b/tox.ini
@@ -15,5 +15,5 @@ setenv =
LANG = en_US.utf-8
[pytest]
-#testpaths = tests
-#addopts = --cov-config .coveragerc --cov http_prompt
+testpaths = tests
+addopts = --cov-config .coveragerc --cov http_prompt