File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 9
9
set VENV_PYTHON = %cd% \venv\Scripts\
10
10
11
11
set COVERAGE_FILE = .coverage.windows.%VERSION% .%FRAMEWORK% .%ASYNCIO%
12
- set IGNORE_PYTHON3_WITH_PYTHON2 =
13
- if " %VERSION% " == " 2.7" set IGNORE_PYTHON3_WITH_PYTHON2 = --ignore-glob=" *\py3_*.py"
14
12
15
13
set PYTEST_JUNIT = " --junitxml=.\tests\windows-%VERSION% -%FRAMEWORK% -%ASYNCIO% -python-agent-junit.xml"
16
14
if " %ASYNCIO% " == " true" (
17
- %VENV_PYTHON% \python.exe -m pytest %PYTEST_JUNIT% %IGNORE_PYTHON3_WITH_PYTHON2% --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m " not integrationtest" || exit /b 1
15
+ %VENV_PYTHON% \python.exe -m pytest %PYTEST_JUNIT% --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m " not integrationtest" || exit /b 1
18
16
)
19
17
if " %ASYNCIO% " == " false" (
20
- %VENV_PYTHON% \python.exe -m pytest %PYTEST_JUNIT% --ignore-glob=" *\asyncio*\*" %IGNORE_PYTHON3_WITH_PYTHON2% --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m " not integrationtest" || exit /b 1
18
+ %VENV_PYTHON% \python.exe -m pytest %PYTEST_JUNIT% --ignore-glob=" *\asyncio*\*" --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m " not integrationtest" || exit /b 1
21
19
)
22
20
call %VENV_PYTHON% \python.exe setup.py bdist_wheel
You can’t perform that action at this time.
0 commit comments