Skip to content

Commit 6169cd4

Browse files
committed
Fix flags
1 parent d2799bf commit 6169cd4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/azure_template_posix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ jobs:
6262
XXHASH: true
6363
PYARROW: true
6464
BUILD_FLAGS: '-Csetup-args=-Dno-binary=true'
65-
python313_cython_coverage:
66-
python.version: '3.13'
65+
python312_cython_coverage:
66+
python.version: '3.12'
6767
BUILD_FLAGS: '-Csetup-args=-Dcython-coverage=true'
6868
cython.coverage: true
6969
python313_latest:
@@ -147,15 +147,15 @@ jobs:
147147
148148
- script: |
149149
echo "Testing editable install"
150-
export COVERAGE_OPTS="--cov=linearmodels --cov-report xml:coverage.xml --cov-report term"
150+
export COVERAGE_OPTS="--cov-config=.coveragerc --cov=linearmodels --cov-branch --cov-report xml:coverage.xml --cov-report term"
151151
echo pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} linearmodels/tests
152152
pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} linearmodels/tests
153153
displayName: 'Run tests (editable)'
154154
condition: and(and(ne(variables['test.wheel'], 'true'), ne(variables['test.sdist'], 'true')), ne(variables['pip.pre'], 'true'))
155155
156156
- script: |
157157
echo "Testing pip-pre"
158-
export COVERAGE_OPTS="--cov=linearmodels --cov-report xml:coverage.xml --cov-report term"
158+
export COVERAGE_OPTS="--cov-config=.coveragerc --cov=linearmodels --cov-branch --cov-report=xml:coverage.xml --cov-report=term"
159159
echo pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} linearmodels/tests
160160
pytest -m "${PYTEST_PATTERN}" --junitxml=junit/test-results.xml -n auto --durations=25 ${COVERAGE_OPTS} linearmodels/tests
161161
displayName: 'Run tests (pip pre)'

0 commit comments

Comments
 (0)