1
0
Fork 0

Minor changes in github actions

This commit is contained in:
Joao Gilberto Magalhaes 2022-08-26 16:05:18 -05:00
parent 2a74f5d445
commit 7a1fc46f00
2 changed files with 9 additions and 1 deletions

4
.dockerignore Normal file
View file

@ -0,0 +1,4 @@
__pycache__
.pytest_cache
*.pyc
.*

View file

@ -26,10 +26,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run tests
- name: Install requirements
run: |
cd src/
pip install -r requirements.txt
- name: Run tests
run: |
cd src/
pytest -s tests/ -vv
Build: