mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
29 lines
668 B
YAML
29 lines
668 B
YAML
name: Rebaselining Integration Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
rebaselining-integration-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python 3.11
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install tox via Makefile
|
|
run: |
|
|
make setup
|
|
|
|
- name: Run only rebaselining integration test
|
|
env:
|
|
EPC_AUTH_TOKEN: ${{ secrets.DEV_EPC_AUTH_TOKEN }}
|
|
run: |
|
|
pytest backend/tests/test_rebaselining_pipeline.py -k test_rebaselining_pipeline_with_real_data
|
|
|