-
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEV: Add scheduled tests workflow for pytest slow option
- Loading branch information
1 parent
45971e9
commit 655f4be
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Scheduled Tests | ||
|
||
on: | ||
schedule: | ||
- cron: "0 17 */14 * 5" # every 2 weeks, always on a Friday at 17:00 | ||
timezone: "America/Sao_Paulo" | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
pytest: | ||
if: github.ref == "refs/heads/master" || github.ref == "refs/heads/develop" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
fail-fast: false | ||
python-version: [3.9, 3.12] | ||
|
||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install rocketpy | ||
run: pip install . | ||
|
||
- name: Test importing rocketpy | ||
run: python -c "import sys, rocketpy; print(f'{rocketpy.__name__} running on Python {sys.version}')" | ||
|
||
- name: Install test dependencies | ||
run: | | ||
pip install -r requirements-tests.txt | ||
pip install .[all] | ||
- name: Run Unit Tests | ||
run: pytest tests/unit --cov=rocketpy | ||
|
||
- name: Run Documentation Tests | ||
run: pytest rocketpy --doctest-modules --cov=rocketpy --cov-append | ||
|
||
- name: Run Integration Tests | ||
run: pytest tests/integration --cov=rocketpy --cov-append | ||
|
||
- name: Run Acceptance Tests | ||
run: pytest tests/acceptance --cov=rocketpy --cov-append --cov-report=xml | ||
|
||
- name: Run slow tests | ||
run: pytest tests -vv -m slow --runslow --cov=rocketpy --cov-append --cov-report=xml |