Fix: Interval check and error message formatting in multi.py
#5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pytest | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
- dev | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt pytest | |
- name: Run non-cache tests | |
run: pytest tests/ --ignore tests/test_cache.py --ignore tests/test_price_repair.py | |
- name: Run cache tests | |
run: | | |
pytest tests/test_cache.py::TestCache | |
pytest tests/test_cache.py::TestCacheNoPermission |