Skip to content

Commit

Permalink
Better test version number and pytest-runner fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carlvitzthum committed Jul 19, 2018
1 parent 0a18f98 commit 2fff652
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dcicutils/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.03.6"
__version__ = "0.0.36"
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ boto3==1.7.42
botocore==1.10.42
elasticsearch==5.5.2
aws_requests_auth==0.4.1
pytest-runner
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
README = open(os.path.join(here, 'README.md')).read()


# we want strict package requirements on install
# we want strict package requirements on install
with open('requirements.txt') as f:
requires = f.read().splitlines()
requires = [req.strip() for req in requires]

tests_require = [
'pytest',
'pytest-runner',
'pytest-mock',
'pytest-cov',
]
Expand Down

0 comments on commit 2fff652

Please sign in to comment.