Add stub for testing with setup.py test
This commit is contained in:
parent
c80c34939e
commit
fa3840e0b4
|
|
@ -24,3 +24,6 @@ wheels/
|
|||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
|
||||
.pytest_cache
|
||||
2
setup.py
2
setup.py
|
|
@ -66,4 +66,6 @@ setup(
|
|||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
|
||||
],
|
||||
setup_requires=['pytest-runner'],
|
||||
tests_require=['pytest'],
|
||||
)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
"""
|
||||
Tests for the YAML parser
|
||||
"""
|
||||
|
||||
|
||||
# content of test_sample.py
|
||||
def test_numbers_3_4():
|
||||
assert 12 == 12
|
||||
Loading…
Reference in New Issue