Skip to content

Commit

Permalink
Replaceinf py.test to pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
sanurielf committed Nov 1, 2022
1 parent 398576f commit e72d732
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
run: |
echo ${KVXOPT_SUITESPARSE_SRC_DIR}
python -c 'from kvxopt import blas,dsdp,lapack,glpk,osqp,fftw,gsl,cholmod,umfpack,klu'
py.test --cov=kvxopt --cov-report=xml tests/
pytest --cov=kvxopt --cov-report=xml tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ jobs:
run: |
echo ${KVXOPT_SUITESPARSE_SRC_DIR}
python -c 'from kvxopt import blas,lapack,glpk,osqp,fftw,gsl,cholmod,umfpack,klu'
py.test --cov=kvxopt tests/
pytest --cov=kvxopt tests/
2 changes: 1 addition & 1 deletion .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,4 +271,4 @@ jobs:
- name: Test
run: |
python -c 'from kvxopt import blas,lapack,cholmod,umfpack,klu,glpk,osqp,fftw,gsl'
py.test --cov=kvxopt tests/
pytest --cov=kvxopt tests/
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pipeline {
stage('Test') {
steps {
sh '''python -c 'from kvxopt import blas,dsdp,lapack,glpk,osqp,fftw,gsl,cholmod,umfpack,klu'
py.test --cov=kvxopt tests/'''
pytest --cov=kvxopt tests/'''
}
}

Expand Down Expand Up @@ -152,7 +152,7 @@ pipeline {
stage('Test') {
steps {
sh '''python3 -c 'from kvxopt import blas,dsdp,lapack,glpk,osqp,fftw,gsl,cholmod,umfpack,klu'
py.test --cov=kvxopt tests/'''
pytest --cov=kvxopt tests/'''
}
}

Expand Down

0 comments on commit e72d732

Please sign in to comment.