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
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/env python
import sys
import pytest
def test_one(): # <1>
assert 1
@pytest.mark.skip(reason="can not currently test") # <2>
def test_two():
assert 1
@pytest.mark.skipif(sys.platform != 'win32', reason="only implemented on Windows") # <3>
def test_three():
assert 1
@pytest.mark.xfail # <4>
def test_four():
assert 1
@pytest.mark.xfail # <4>
def test_five():
assert 0
if __name__ == '__main__':
pytest.main([__file__, '-v'])