File tree 5 files changed +9
-1
lines changed
5 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 2
2
.idea
3
3
.cache
4
4
.DS_Store
5
+ .eggs
5
6
6
7
.coverage
7
8
Original file line number Diff line number Diff line change 6
6
# command to install dependencies
7
7
install :
8
8
- pip install codecov pytest-cov pylint
9
- # command to run tests
10
9
before_script :
11
10
- export PYPACT=$PWD
12
11
- export PYTHONPATH=$PYTHONPATH:$PYPACT/pypact
Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ addopts = --cov =./pypact/util --cov =./pypact/output --cov =./pypact/material --cov =./pypact/reader --cov =./pypact/tools
3
+ python_files = pypact/tests/testsuite.py
Original file line number Diff line number Diff line change
1
+ [aliases]
2
+ test =pytest
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
+
3
4
setup (name = 'pypact' ,
4
5
version = '1.0.0' ,
5
6
description = 'The package for reading and manipulating the fispact output text file.' ,
13
14
install_requires = [],
14
15
python_requires = '>=3' ,
15
16
scripts = ['pypact/tools/fispactconverter.py' ],
17
+ setup_requires = ['pytest-runner' ],
16
18
test_suite = 'pypact.tests.testsuite' ,
17
19
tests_require = ['pytest' ],
18
20
zip_safe = False )
21
+
You can’t perform that action at this time.
0 commit comments