initial creation

This commit is contained in:
2025-05-20 11:57:43 -04:00
commit c98b612926
8447 changed files with 1862526 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env python
import pytest
@pytest.mark.alpha # <1>
def test_one():
assert 1
@pytest.mark.alpha # <1>
def test_two():
assert 1
@pytest.mark.beta # <2>
def test_three():
assert 1
if __name__ == '__main__':
pytest.main([__file__, '-m alpha']) # <3>