test_momo.py のパスを修正 #3
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
name: e2e-test | |
on: | |
push: | |
paths-ignore: | |
- "doc/**" | |
- "html/**" | |
- "**.md" | |
- "THANKS" | |
- "LICENSE" | |
- "NOTICE" | |
jobs: | |
e2e-test-macos: | |
strategy: | |
fail-fast: false | |
matrix: | |
name: | |
- macos_arm64 | |
name: Build momo for ${{ matrix.name }} | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: python3 run.py ${{ matrix.name }} | |
- uses: eifinger/setup-rye@v3 | |
with: | |
version: 'latest' | |
- run: rye sync | |
working-directory: ./test | |
- run: rye run pytest test_momo.py | |
working-directory: ./test |