Skip to content

Commit

Permalink
add test for multi_build_exclude fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
aliciaaevans committed Mar 15, 2024
1 parent d5a9b1c commit 0b5aa42
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,16 @@ def test_multi_build(multi_build):
assert os.path.exists(pkg)


@pytest.mark.long_running_1
def test_multi_build_exclude(multi_build_exclude):
for (k, v) in multi_build_exclude.items():
for pkg in v:
if k == 'three':
assert not os.path.exists(pkg)
else:
assert os.path.exists(pkg)


@pytest.mark.skipif(SKIP_DOCKER_TESTS, reason='skipping on osx')
def test_docker_bioconda_utils_version():
"""
Expand Down

0 comments on commit 0b5aa42

Please sign in to comment.