File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -109,3 +109,6 @@ venv.bak/
109
109
.DS_Store
110
110
.vscode /
111
111
.Rhistory
112
+
113
+ # PyCHarm
114
+ /.idea /
Original file line number Diff line number Diff line change 2
2
3
3
test :
4
4
rm -f .coverage
5
- nosetests --verbose --with-coverage --cover-package kb_python tests/* tests/dry/*
5
+ pytest --verbose --cov=kb_python tests/* tests/dry/* && coverage report && coverage xml
6
+ # nosetests --verbose --with-coverage --cover-package kb_python tests/* tests/dry/*
6
7
7
8
check :
8
9
flake8 kb_python && echo OK
Original file line number Diff line number Diff line change 1
1
bumpversion==0.6.0
2
2
coverage==5.1
3
3
flake8==3.8.2
4
- nose==1.3.7
4
+ pytest==8.2.2
5
+ pytest-cov==5.0.0
5
6
pre-commit==2.4.0
6
7
sphinx>=3.3.1
7
8
sphinx-autoapi>=1.5.1
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ necessary packages by running::
18
18
pip install -r requirements.txt
19
19
pip install -r dev-requirements.txt
20
20
21
- Code qualty and unit tests are strictly enforced for every pull request via
21
+ Code quality and unit tests are strictly enforced for every pull request via
22
22
Github actions.
23
23
24
24
Code Quality
@@ -33,7 +33,7 @@ at the root of the repository.
33
33
34
34
Unit-testing
35
35
""""""""""""
36
- ``kb-python `` uses ``nose `` to run unit tests. There is a convenient Makefile
36
+ ``kb-python `` uses ``pytest `` to run unit tests. There is a convenient Makefile
37
37
rule in place to run all tests.::
38
38
39
39
make test
You can’t perform that action at this time.
0 commit comments