Skip to content

Commit

Permalink
Try skipping both
Browse files Browse the repository at this point in the history
  • Loading branch information
jayjb committed Jan 25, 2024
1 parent 7af76a0 commit 1c9cb59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ jobs:
copy .\frontend\frontend.env.dist .\frontend\frontend.env
copy .\switchboard\switchboard.env.dist .\switchboard\switchboard.env
cd tests
poetry run -X tracemalloc=25 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 --runv3
4 changes: 2 additions & 2 deletions tests/integration/test_custom_binary.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import base64
import os
import re
import subprocess
import tempfile
Expand Down Expand Up @@ -95,7 +94,8 @@ def test_custom_binary_token_fire(
assert token_hit.input_channel == "DNS"


@pytest.mark.skipif(os.name != "nt", reason="Requires nt os (Windows OS)")
@pytest.mark.skip(reason="testing")
# @pytest.mark.skipif(os.name != "nt", reason="Requires nt os (Windows OS)")
@pytest.mark.parametrize(
"version,file_name,file_mimetype",
[
Expand Down

0 comments on commit 1c9cb59

Please sign in to comment.