Skip to content

Commit

Permalink
Remove tutorial test marks for Python 3.6; add for GHA ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Feb 23, 2022
1 parent 586121e commit 64b13f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions message_ix/tests/test_tutorials.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

# Common marks for some test cases
mark0 = pytest.mark.skipif(
condition=sys.version_info.minor <= 6 and sys.platform != "linux",
reason="R/reticulate link fails on GitHub Actions runners for Python 3.6",
condition="GITHUB" in os.environ and sys.platform == "linux",
reason="IR kernel times out on GitHub Actions Ubuntu runners ",
)

# This mark does *not* affect macos-latest-py3.9, which must still pass
Expand Down

0 comments on commit 64b13f2

Please sign in to comment.