Skip to content

Commit 9c72e31

Browse files
committed
update workflows
1 parent f9f235d commit 9c72e31

File tree

3 files changed

+7
-48
lines changed

3 files changed

+7
-48
lines changed

.github/workflows/tests_pip_env.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/workflows/tests_poetry_env.yml renamed to .github/workflows/tests_pixi_env.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a single version of Python
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
33

4-
name: Automatic Unit Tests, poetry environment
4+
name: Automatic Unit Tests, pixi environment
55

66
on:
77
push:
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: ["3.11"]
20+
python-version: ["3.13"]
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -36,10 +36,10 @@ jobs:
3636
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3737
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3838
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
39-
- name: Install poetry
39+
- name: Install pixi
4040
run: |
41-
pip install poetry
42-
poetry install --no-root
43-
- name: Test with poetry and pytest
41+
curl -fsSL https://pixi.sh/install.sh | bash
42+
source ~/.bashrc
43+
- name: Test with pixi and pytest
4444
run: |
45-
poetry run python -m pytest
45+
pixi run python -m pytest

requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)