We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c80c349 commit fa3840eCopy full SHA for fa3840e
.gitignore
@@ -24,3 +24,6 @@ wheels/
24
.installed.cfg
25
*.egg
26
MANIFEST
27
+
28
29
+.pytest_cache
setup.cfg
@@ -0,0 +1,2 @@
1
+[aliases]
2
+test=pytest
setup.py
@@ -66,4 +66,6 @@
66
'Programming Language :: Python :: Implementation :: PyPy',
67
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
68
],
69
+ setup_requires=['pytest-runner'],
70
+ tests_require=['pytest'],
71
)
tests/test_yaml.py
@@ -0,0 +1,8 @@
+"""
+Tests for the YAML parser
3
4
5
6
+# content of test_sample.py
7
+def test_numbers_3_4():
8
+ assert 12 == 12
0 commit comments