Skip to content

Commit

Permalink
Skips test_convert on CI environment
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelduchesne committed Feb 27, 2020
1 parent c398dcd commit c6bc682
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ def cli_args(config, request):
yield request.param[1:]

@pytest.mark.xfail(
"TRAVIS" in os.environ and os.environ["TRAVIS"] == "true",
reason="Skipping this test on Travis CI.",
os.environ.get("CI", "False").lower() == "true",
reason="Skipping this test on CI environment.",
)
@pytest.mark.skipif(
get_platform() > (10, 15, 0),
Expand Down

0 comments on commit c6bc682

Please sign in to comment.