diff options
author | cclauss <cclauss@bluewin.ch> | 2018-07-23 01:32:10 +0200 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-07-22 18:32:10 -0500 |
commit | bc021e4ae3232875fbbd13cdc74348f9893ed641 (patch) | |
tree | a6fbeec5577bdde25c1e5a601672a8272ce200bd /.appveyor.yml | |
parent | 35ec442fb961bb2d33cb5d9096207213c5022ec9 (diff) | |
download | numpy-bc021e4ae3232875fbbd13cdc74348f9893ed641.tar.gz |
TST: Add Python 3.7 to CI testing (#11598)
Add testing with Python 3.7 to both appveyor and travis.
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 4f4083c99..99936267a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,6 +30,11 @@ environment: PYTHON_ARCH: 32 TEST_MODE: fast + - PYTHON: C:\Python37 + PYTHON_VERSION: 3.7 + PYTHON_ARCH: 32 + TEST_MODE: fast + - PYTHON: C:\Python27-x64 PYTHON_VERSION: 2.7 PYTHON_ARCH: 64 @@ -40,6 +45,11 @@ environment: PYTHON_ARCH: 64 TEST_MODE: full + - PYTHON: C:\Python37-x64 + PYTHON_VERSION: 3.7 + PYTHON_ARCH: 64 + TEST_MODE: full + init: - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" - "ECHO \"%APPVEYOR_SCHEDULED_BUILD%\"" |