Skip to content

Commit

Permalink
Fix pytest marker syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sbliven committed Jun 27, 2020
1 parent e32ba04 commit 8744461
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ deps =

# For now, only run travis-compatible tests
commands =
pytest -m no_external_software_required -m "not data_download"
pytest -m "no_external_software_required and not data_download"
1 change: 1 addition & 0 deletions tral/test/paths_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def test_package_config(config_dir):
with pytest.raises(FileNotFoundError):
ini_file = paths.config_file('foo', config_dir=config_dir, config_url=DISABLED_URL)


@pytest.mark.data_download
@pytest.mark.no_external_software_required
def test_download_config(config_dir):
Expand Down

0 comments on commit 8744461

Please sign in to comment.