Skip to content

Commit

Permalink
Add test basic
Browse files Browse the repository at this point in the history
  • Loading branch information
jayjb committed Jan 25, 2024
1 parent 651df6a commit f757f8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,5 @@ jobs:
copy .\frontend\frontend.env.dist .\frontend\frontend.env
copy .\switchboard\switchboard.env.dist .\switchboard\switchboard.env
cd tests
poetry run pytest .\integration\test_custom_binary.py --runv3
# poetry run coverage run --source=.\integration -m pytest .\integration\test_custom_binary.py --runv3
poetry run coverage run --source=.\integration -m pytest .\integration\test_custom_binary.py::test_basic --runv3
#poetry run pytest .\integration\test_custom_binary.py --runv3
4 changes: 4 additions & 0 deletions tests/integration/test_custom_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
)


def test_basic():
assert True


@pytest.mark.skip(reason="testing")
# @pytest.mark.skipif(os.name == "nt", reason="Skip if nt os (Windows OS)")
@pytest.mark.parametrize("version", [v2, v3])
Expand Down

0 comments on commit f757f8b

Please sign in to comment.