From 66aafcb52ab7215e895ca0626d135174d163de2d Mon Sep 17 00:00:00 2001 From: Gyeongjae Choi Date: Thu, 5 Dec 2024 09:44:47 +0000 Subject: [PATCH] Fix pytest flag [integration] --- tests/conftest.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index b0151c3..84d0bce 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -23,6 +23,13 @@ def pytest_addoption(parser): help="Run tests that query remote package indexes.", ) + parser.addoption( + "--integration", + action="store_true", + default=None, + help="Run integration tests.", + ) + EMSCRIPTEN_VER = "3.1.14" PLATFORM = f"emscripten_{EMSCRIPTEN_VER.replace('.', '_')}_wasm32"