Skip to content

Commit a3abba0

Browse files
committed
debug
1 parent a6c0654 commit a3abba0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ def test_compiler(venv, package_detect_compiler, tmp_path):
223223
# Windows. This effectively means running the compilation step
224224
# with 'meson compile' instead of 'ninja' on Windows. Run this
225225
# test only on CI where we know that MSVC is available.
226-
with mesonpy._project({'setup-args': ['--vsenv', '-Dbuildtype=plain'], 'compile-args': ['-v']}) as project:
226+
with mesonpy._project({'setup-args': ['--vsenv'], 'compile-args': ['-v']}) as project:
227227
wheel = project.wheel(tmp_path)
228228
venv.pip('install', os.fspath(wheel))
229229
compiler = venv.python('-c', 'import detect_compiler; print(detect_compiler.compiler())').strip()
230230
assert compiler == 'msvc'
231-
assert false
231+
assert False

0 commit comments

Comments
 (0)