Skip to content

Commit f89dd25

Browse files
committed
update
1 parent 3a1609a commit f89dd25

File tree

3 files changed

+296
-288
lines changed

3 files changed

+296
-288
lines changed

.github/workflows/pytest.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,14 @@ on:
77
pull_request:
88
branches:
99
- main
10-
1110
jobs:
1211
probtest-pytest:
1312
runs-on: ubuntu-latest
1413
defaults:
1514
run:
1615
shell: bash -l {0}
17-
1816
steps:
1917
- uses: actions/checkout@v2
20-
2118
- name: Set up Python
2219
uses: actions/setup-python@v2
2320
with:
@@ -27,13 +24,13 @@ jobs:
2724
curl -sSL https://install.python-poetry.org | python3 -
2825
- name: Configure Poetry to use the right Python version
2926
run: |
30-
poetry env use python3.10 # Adjust the Python version if necessary
27+
poetry env use python3.10
3128
- name: Install dependencies with Poetry
3229
run: |
3330
poetry install
34-
- name: Run setup_env.py script (if needed)
31+
- name: Run setup_env.py script
3532
run: |
36-
poetry run python setup_env.py # If you need to run the setup_env.py script for `.env`
33+
poetry run python setup_env.py
3734
- name: Run Pytest with Poetry
3835
env:
3936
TZ: Europe/Zurich

0 commit comments

Comments
 (0)