Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Azure Pipelines: Test Windows on Python 3.8 #7320

Merged
merged 4 commits into from
Jan 13, 2020
Merged
Show file tree
Hide file tree
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
10 changes: 8 additions & 2 deletions .azure-pipelines/jobs/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
Python37-x64:
python.version: '3.7'
python.architecture: x64
maxParallel: 5
Python38-x64:
python.version: '3.8'
python.architecture: x64
maxParallel: 6

steps:
- template: ../steps/run-tests-windows.yml
Expand Down Expand Up @@ -54,7 +57,10 @@ jobs:
Python37-x86:
python.version: '3.7'
python.architecture: x86
maxParallel: 5
Python38-x86:
python.version: '3.8'
python.architecture: x86
maxParallel: 6

steps:
- template: ../steps/run-tests-windows.yml
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/steps/run-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ steps:
Set-Acl "R:\Temp" $acl
displayName: Set RAMDisk Permissions

- bash: pip install --upgrade setuptools tox
- bash: pip install --upgrade setuptools tox virtualenv
displayName: Install Tox

- script: tox -e py -- -m unit -n auto --junit-xml=junit/unit-test.xml
Expand Down
4 changes: 2 additions & 2 deletions docs/html/development/ci.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Actual testing
| | +-------+---------------+-----------------+
| | x86 | CP3.7 | Azure | |
| | +-------+---------------+-----------------+
| | | CP3.8 | | |
| | | CP3.8 | Azure | |
| | +-------+---------------+-----------------+
| | | PyPy | | |
| | +-------+---------------+-----------------+
Expand All @@ -113,7 +113,7 @@ Actual testing
| | +-------+---------------+-----------------+
| | x64 | CP3.7 | Azure | Azure |
| | +-------+---------------+-----------------+
| | | CP3.8 | | |
| | | CP3.8 | Azure | Azure |
| | +-------+---------------+-----------------+
| | | PyPy | | |
| | +-------+---------------+-----------------+
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,5 @@ def check_warning(msg, *args, **kwargs):
])
def test_expanduser(home, path, expanded, monkeypatch):
monkeypatch.setenv("HOME", home)
monkeypatch.setenv("USERPROFILE", home)
assert expanduser(path) == expanded