Skip to content

Commit

Permalink
Unify CI env var for tests
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Mazuruk <[email protected]>
  • Loading branch information
aalexanderr committed Oct 4, 2021
1 parent f049705 commit 2c81eab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_vcs_pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


@pytest.mark.skipif(
"TRAVIS" not in os.environ, reason="Subversion is only required under Travis"
"CI" not in os.environ, reason="Subversion is only required under CI"
)
def test_ensure_svn_available():
"""Make sure that svn is available when running in Travis."""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_vcs_pip_bazaar.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


@pytest.mark.skipif(
"TRAVIS" not in os.environ, reason="Bazaar is only required under Travis"
"CI" not in os.environ, reason="Bazaar is only required under CI"
)
def test_ensure_bzr_available():
"""Make sure that bzr is available when running in Travis."""
Expand Down

0 comments on commit 2c81eab

Please sign in to comment.