Skip to content

Commit

Permalink
Merge pull request #45 from cehbrecht/cleanup-tests
Browse files Browse the repository at this point in the history
cleanup tests
  • Loading branch information
cehbrecht committed Aug 6, 2019
2 parents 69bb245 + ed619b6 commit 8db9e13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyesgf/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def parse_timestamp(timestamp):
if args.from_date:
from_date = parse_timestamp(args.from_date)
else:
from_date is None
from_date = None

extract_from_solr(args.endpoint, args.project, args.repository,
from_date=from_date)
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[tool:pytest]
addopts =
--strict
--tb=native
python_files = test_*.py
testpaths = tests
addopts = --strict --tb=native
markers =
online: mark test to need internet connection
slow: mark test to be slow
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,4 @@
extras_require={
"dev": dev_reqs, # pip install ".[dev]"
},
entry_points={},
test_suite='test')
entry_points={},)

0 comments on commit 8db9e13

Please sign in to comment.