Skip to content

Commit

Permalink
TST: mark test_local_lib as xfail on github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Filipe Laíns <lains@riseup.net>
  • Loading branch information
FFY00 committed Jul 26, 2022
1 parent 961bc89 commit 52c31e4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_wheel.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# SPDX-License-Identifier: MIT

import os
import platform
import re
import subprocess
Expand Down Expand Up @@ -114,6 +115,11 @@ def test_interpreter_abi_tag(wheel_purelib_and_platlib):


@pytest.mark.skipif(platform.system() != 'Linux', reason='Unsupported on this platform for now')
@pytest.mark.xfail(
sys.version_info >= (3, 9) and os.environ.get('GITHUB_ACTIONS') == 'true',
reason='github actions',
strict=True,
)
def test_local_lib(virtual_env, wheel_link_against_local_lib):
subprocess.check_call([virtual_env, '-m', 'pip', 'install', wheel_link_against_local_lib])
subprocess.check_output([
Expand Down

0 comments on commit 52c31e4

Please sign in to comment.