also extensively test migrations #271
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: Tests with faked time | |
on: | |
push: | |
pull_request: | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
name: libfaketime test | |
steps: | |
- name: Install APT dependencies | |
run: sudo apt-get install -y firefox softhsm2 faketime | |
- name: Acquire sources | |
uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: "3.12" | |
architecture: x64 | |
- name: Apply caching of dependencies | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: pip-${{ hashFiles('**/requirements-*.txt') }} | |
- name: Install dependencies | |
run: | | |
pip install -U pip setuptools wheel | |
pip install -r requirements.txt -r requirements/requirements-test.txt | |
- name: Run tests | |
run: faketime -f +100y pytest -v --no-selenium --cov-report term-missing --durations=20 |