Skip to content

Tests

Tests #474

Workflow file for this run

name: Tests
on:
push:
branches: [ "actions-test" ]
schedule:
- cron: "0 0 * * *"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Install Python requirements
run: |
: \
&& python -m pip install . \
&& pip install pytest-rerunfailures \
&& :
- name: Run pytest
run: pytest -v
env:
PPMI_LOGIN: ${{ secrets.PPMI_USER }}
PPMI_PASSWORD: ${{ secrets.PPMI_PASSWORD }}