Skip to content

Commit f8a0894

Browse files
committed
GitHub Actions test modül yolunu düzelt
1 parent 2719647 commit f8a0894

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Validate Python and tests
2222
run: |
2323
python -m py_compile app.py scripts/hash-password.py
24-
pytest -q
24+
python -m pytest -q
2525
- name: Validate shell scripts
2626
run: bash -n setup.sh scripts/install-imapsync-ubuntu.sh
2727
- name: Validate browser JavaScript

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Kuyruk yöneticisi uygulama içinde çalıştığından yalnızca tek Uvicorn wo
139139
python3 -m venv .venv
140140
source .venv/bin/activate
141141
pip install -r requirements-dev.txt
142-
pytest -q
142+
python -m pytest -q
143143
```
144144

145145
GitHub Actions her push ve pull request'te Python testlerini, JavaScript sözdizimini ve Ubuntu kurulum betiklerini doğrular.
@@ -279,7 +279,7 @@ Run exactly one Uvicorn worker because the queue manager lives inside the applic
279279
python3 -m venv .venv
280280
source .venv/bin/activate
281281
pip install -r requirements-dev.txt
282-
pytest -q
282+
python -m pytest -q
283283
```
284284

285285
GitHub Actions validates the Python tests, JavaScript syntax, and Ubuntu installation scripts on every push and pull request.

0 commit comments

Comments
 (0)