diff options
author | Betsy McPhail <betsy.mcphail@kitware.com> | 2021-10-21 16:59:33 -0400 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2022-03-17 09:01:01 -0700 |
commit | 06aef626cbcefc1aa8ba043112b4940e098187d1 (patch) | |
tree | 4cdf8ce004c824c5cff596dfe8634067b0305836 /.github | |
parent | 31daf0f2b6bd769135e088294eff93a94342c3d2 (diff) | |
download | spack-06aef626cbcefc1aa8ba043112b4940e098187d1.tar.gz spack-06aef626cbcefc1aa8ba043112b4940e098187d1.tar.bz2 spack-06aef626cbcefc1aa8ba043112b4940e098187d1.tar.xz spack-06aef626cbcefc1aa8ba043112b4940e098187d1.zip |
Update tests support for Windows
Fixup common tests
* Remove requirement for Python 2.6
* Skip new failing test
Windows: Update url util to handle Windows paths (#27959)
* update url util to handle windows paths
* Update tests to handle fixed url handling
* canonicalize path only when the path type matches the host platform
* Skip some url tests on Windows
Co-authored-by: Omar Padron <omar.padron@kitware.com>
Use threading.TIMEOUT_MAX when available (#24246)
This value was introduced in Python 3.2. Specifying a timeout greater than
this value will raise an OverflowError.
Co-authored-by: Lou Lawrence <lou.lawrence@kitware.com>
Co-authored-by: John Parent <john.parent@kitware.com>
Co-authored-by: Betsy McPhail <betsy.mcphail@kitware.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/windows_python.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows_python.yml b/.github/workflows/windows_python.yml index 7549273628..0c517eef5f 100644 --- a/.github/workflows/windows_python.yml +++ b/.github/workflows/windows_python.yml @@ -27,9 +27,9 @@ jobs: python -m pip install --upgrade pip python -m pip install --upgrade vermin - name: vermin (Spack's Core) - run: vermin --backport argparse --backport typing -t='2.6-' -t='3.5-' -v spack/lib/spack/spack/ spack/lib/spack/llnl/ spack/bin/ + run: vermin --backport argparse --backport typing -t='2.7-' -t='3.5-' -v spack/lib/spack/spack/ spack/lib/spack/llnl/ spack/bin/ - name: vermin (Repositories) - run: vermin --backport argparse --backport typing -t='2.6-' -t='3.5-' -v spack/var/spack/repos + run: vermin --backport argparse --backport typing -t='2.7-' -t='3.5-' -v spack/var/spack/repos # Run style checks on the files that have been changed style: runs-on: windows-latest |