Skip to content
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
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- job: Windows
condition: and(succeeded(), ne(variables['Build.SourceBranch'], 'refs/heads/master')) # skip for PR merges
pool:
vmImage: 'VS2017-Win2016'
vmImage: 'windows-2019'
variables:
MPLBACKEND: agg
strategy:
Expand Down
3 changes: 3 additions & 0 deletions testsuite/MDAnalysisTests/lib/test_augment.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# MDAnalysis: A Toolkit for the Analysis of Molecular Dynamics Simulations.
# J. Comput. Chem. 32 (2011), 2319--2327, doi:10.1002/jcc.21787

import os
import pytest
import numpy as np
from numpy.testing import assert_almost_equal, assert_equal
Expand Down Expand Up @@ -67,6 +68,8 @@
)


@pytest.mark.xfail(os.name == "nt",
reason="see gh-3248")
@pytest.mark.parametrize('b', (
np.array([10, 10, 10, 90, 90, 90], dtype=np.float32),
np.array([10, 10, 10, 45, 60, 90], dtype=np.float32)
Expand Down