Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,21 @@ jobs:
name: badge-report
path: _REPORTS

irdb_test:
name: Run internal tests
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'irdb functionality')
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: pip install -r requirements.github_actions.txt
- name: Run Pytest for badges
run: pytest -m "irdb"

tests_devmaster:
name: Test against ScopeSim main or PR branch
runs-on: ${{ matrix.os }}
Expand Down
Loading