Skip to content

Commit eba4363

Browse files
committed
Use pytest instead of python setup.py
1 parent 7fe20ea commit eba4363

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727

2828
- name: Run tests
2929
run: |
30+
pip install pytest
3031
unset GITHUB_ACTION
3132
oj-verify -h
32-
python setup.py test
33+
pytest
3334
shell: bash

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ ENV/
77
env.bak/
88
venv.bak/
99

10+
# Python
1011
__pycache__
12+
build/

0 commit comments

Comments
 (0)