diff options
| author | Sergey V. Lobanov <sergey@lobanov.in> | 2024-11-28 22:24:01 +0100 |
|---|---|---|
| committer | Sergey V. Lobanov <sergey@lobanov.in> | 2024-11-28 22:37:25 +0100 |
| commit | 3ffd332fc22bdfb450f941ad2bbf5c04c2467ed1 (patch) | |
| tree | b4b4f27db8a93471b1f712074a9162f91cfee2f1 /tests/conftest.py | |
| parent | bc81d8373bf7d26cad2225eb9deea47981bb4373 (diff) | |
| download | accel-ppp-3ffd332fc22bdfb450f941ad2bbf5c04c2467ed1.tar.gz accel-ppp-3ffd332fc22bdfb450f941ad2bbf5c04c2467ed1.zip | |
tests,ci: disable chap-secrets related tests on alpine
radius and chap-secrets can't work together due to musl library limiations
This patch disables chap-secrets related tests on alpine
ref: https://github.com/accel-ppp/accel-ppp/pull/190#issuecomment-2331036461
Diffstat (limited to 'tests/conftest.py')
| -rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 6687ed10..da1f40f4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -26,6 +26,10 @@ def pytest_configure(config): "markers", "vlan_mon_driver: marks tests as related to ipoe kernel module (deselect with '-m \"not vlan_mon_driver\"')", ) + config.addinivalue_line( + "markers", + "chap_secrets: marks tests as related to chap-secrets module (deselect with '-m \"not chap_secrets\"')", + ) # accel-pppd executable file name |
