Skip to content

Commit 99817eb

Browse files
committed
tests.py -> test_rutificador.py
1 parent d69d304 commit 99817eb

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
3131
- name: Run tests
3232
run: |
33-
python -m pytest -v tests/tests.py
33+
python -m pytest -v tests/

.github/workflows/coveralls.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Run tests and collect coverage
3333
run: |
3434
pip install pytest-cov
35-
python -m pytest --cov=./ --cov-report=xml --cov-report=lcov tests/tests.py
35+
python -m pytest --cov=./ --cov-report=xml --cov-report=lcov tests/test_rutificador.py
3636
3737
- name: Upload coverage to Coveralls
3838
uses: coverallsapp/github-action@v2

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ pytest = "^7.2.1"
3737

3838
[tool.pytest.ini_options]
3939
testpaths = ["tests"]
40+
pythonpath = ["rutificador"]
4041
addopts = "--import-mode=importlib"
4142

4243
[build-system]
File renamed without changes.

0 commit comments

Comments
 (0)