Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 27 in .github/workflows/test-python.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Health-RI_SeMPyRO&issues=AZ5EU2bjwJC_ZtSBNxAm&open=AZ5EU2bjwJC_ZtSBNxAm&pullRequest=129
python -m pip install flake8 pytest pytest-cov

Check warning on line 28 in .github/workflows/test-python.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Health-RI_SeMPyRO&issues=AZ5EU2bjwJC_ZtSBNxAn&open=AZ5EU2bjwJC_ZtSBNxAn&pullRequest=129
python -m pip install -e .

Check warning on line 29 in .github/workflows/test-python.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=Health-RI_SeMPyRO&issues=AZ5EU2bjwJC_ZtSBNxAo&open=AZ5EU2bjwJC_ZtSBNxAo&pullRequest=129
- name: Test with pytest
run: |
mkdir -p junit
pytest __tests__ --doctest-modules --junitxml=junit/test-results.xml --cov=sempyro --cov-report=xml
- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@v7
uses: SonarSource/sonarqube-scan-action@v8
if: matrix.python-version == '3.10'
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand Down
Loading