Skip to content

Commit 2c81eab

Browse files
committed
Unify CI env var for tests
Signed-off-by: Alexander Mazuruk <a.mazuruk@samsung.com>
1 parent f049705 commit 2c81eab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_vcs_pip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
@pytest.mark.skipif(
26-
"TRAVIS" not in os.environ, reason="Subversion is only required under Travis"
26+
"CI" not in os.environ, reason="Subversion is only required under CI"
2727
)
2828
def test_ensure_svn_available():
2929
"""Make sure that svn is available when running in Travis."""

tests/test_vcs_pip_bazaar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
@pytest.mark.skipif(
18-
"TRAVIS" not in os.environ, reason="Bazaar is only required under Travis"
18+
"CI" not in os.environ, reason="Bazaar is only required under CI"
1919
)
2020
def test_ensure_bzr_available():
2121
"""Make sure that bzr is available when running in Travis."""

0 commit comments

Comments
 (0)