Skip to content

Commit

Permalink
Get all the tests passing again.
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaak-Malers committed Feb 22, 2024
1 parent 07ba115 commit 71a468c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/test_canary.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
import sys
import pytest


class TestCanary:

@pytest.mark.skip(reason="This test is a canary for verifying CI works as intended.")
def test_python_version(self):
version = sys.version
if sys.version.startswith("3.8"):
assert True is False

@pytest.mark.skip(reason="This test is a canary for verifying CI works as intended.")
def test_fail(self):
assert True is False

0 comments on commit 71a468c

Please sign in to comment.