Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hechth committed Jun 19, 2024
1 parent 1a55045 commit 26120ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
- name: Upgrade pip and install dependencies
run: |
python -m pip install --upgrade pip poetry
peotry install --no-root
poetry install --no-root
- name: Run unit tests
run: peotry run pytest
run: poetry run pytest
- name: Verify that we can build the package
run: poetry build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Upgrade pip and install dependencies
run: |
python -m pip install --upgrade pip poetry
peotry install --no-root
poetry install --no-root
- name: Install pandoc using apt
run: sudo apt install pandoc
- name: Build documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python --version
- name: Install dependencies
python -m pip install --upgrade pip poetry
peotry install
poetry install
- name: Run unit tests with coverage
run: python -m pytest --cov --cov-report term --cov-report xml --junitxml=xunit-result.xml tests/
- name: Correct coverage paths
Expand Down

0 comments on commit 26120ed

Please sign in to comment.