Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add the SolMuseum test #101

Merged
merged 1 commit into from
Nov 24, 2024
Merged
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
34 changes: 34 additions & 0 deletions .github/workflows/solmuseum.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Run tests in SolMuseum

on:
push:
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- '*'

jobs:
tests_in_cookbook:

runs-on: windows-latest

steps:
- name: Checkout Test Repository
uses: actions/checkout@v3
with:
repository: 'smallbunnies/SolMuseum'
ref: 'main'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip' # caching pip dependencies

- name: Install Main Repository as Dependency using Git URL
run: |
pip install --upgrade pip setuptools wheel
pip install git+https://github.com/${{github.repository}}.git@${{ github.sha }}
pip install pytest-xdist

- name: Run Tests
run: |
pytest -n auto
Loading