Skip to content

add runs-on

add runs-on #1199

Workflow file for this run

name: Python package tests
on:
push:
pull_request:
types: [opened, synchronize, reopened]
schedule:
- cron: "0 12 * * 1"
pull_request_target:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
call-run-python-tests:
runs-on: ubuntu-latest
steps:
- name: Set test dir
run: |
export $TEST_DIR="tests/unit"
# if branch is 'main', or the repo is 'openclimatefix/quartz-solar-forecast'
# then run all tests, else run only unit tests
if [ ${{ github.event.repository.name }} == 'openclimatefix/quartz-solar-forecast' ] || [ ${{ github.ref }} == 'refs/heads/main' ]; then
export $TEST_DIR=""
fi
echo $TEST_DIR"
- name: Run Python tests
uses: openclimatefix/.github/.github/workflows/python-test.yml@issue/pip-all
with:
# pytest-cov looks at this folder
pytest_cov_dir: "quartz_solar_forecast"
os_list: '["ubuntu-latest"]'
python-version: "['3.11']"
extra_commands: echo "HF_TOKEN=${{ vars.HF_TOKEN }}" > .env
pytest_numcpus: '1'
test_dir: $TEST_DIR