diff options
author | Jakub Roztocil <jakub@roztocil.co> | 2020-08-17 20:35:04 +0200 |
---|---|---|
committer | Jakub Roztocil <jakub@roztocil.co> | 2020-08-17 20:35:04 +0200 |
commit | 531dee162620f3a9e756dda8fc782c58ef64c578 (patch) | |
tree | 892d2e3ed955b8f75f3229e82c4b777c0a1e8b69 | |
parent | 0179a7c9596380cac9148fe3826e92fb447ee4de (diff) |
Fix setup.py
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -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()) @@ -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 |