Skip to content

Commit cc8aab3

Browse files
committed
Update Appveyor script
1 parent a1e21aa commit cc8aab3

File tree

1 file changed

+29
-5
lines changed

1 file changed

+29
-5
lines changed

appveyor.yml

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ build_script:
1919

2020
- ps: >-
2121
22+
# =======================================================================
2223
# Set up required variables
23-
2424
# =======================================================================
2525
2626
$env:DT_HARNESS = "AppVeyor"
@@ -52,8 +52,9 @@ build_script:
5252
}
5353
5454
55-
# Print out variable's content
5655
56+
# =======================================================================
57+
# Print out variable's content
5758
# =======================================================================
5859
5960
echo "DEFAULT_PATH = $DEFAULT_PATH"
@@ -75,8 +76,9 @@ build_script:
7576
echo "DT_BUILD_SUFFIX = $env:DT_BUILD_SUFFIX"
7677
7778
78-
# Build and test wheel for Python 3.6
7979
80+
# =======================================================================
81+
# Build and test wheel for Python 3.6
8082
# =======================================================================
8183
8284
$env:PATH = "C:\Python36-x64;C:\Python36-x64\Scripts;$DEFAULT_PATH"
@@ -97,8 +99,8 @@ build_script:
9799
98100
99101
102+
# =======================================================================
100103
# Build and test wheel for Python 3.7
101-
102104
# =======================================================================
103105
104106
$env:PATH = "C:\Python37-x64;C:\Python37-x64\Scripts;$DEFAULT_PATH"
@@ -119,8 +121,8 @@ build_script:
119121
120122
121123
124+
# =======================================================================
122125
# Build and test wheel for Python 3.8
123-
124126
# =======================================================================
125127
126128
$env:PATH = "C:\Python38-x64;C:\Python38-x64\Scripts;$DEFAULT_PATH"
@@ -138,3 +140,25 @@ build_script:
138140
pip --disable-pip-version-check install $datatable_wheel pytest docutils pandas
139141
140142
pytest -ra --maxfail=10 -Werror -vv --showlocals .\tests\
143+
144+
145+
146+
# =======================================================================
147+
# Build and test wheel for Python 3.9
148+
# =======================================================================
149+
150+
$env:PATH = "C:\Python39-x64;C:\Python39-x64\Scripts;$DEFAULT_PATH"
151+
152+
python ci\ext.py wheel
153+
154+
$datatable_wheel = ls dist\*-cp39-*.whl
155+
156+
echo "----- build_info 3.9 ---------------------------------------------"
157+
158+
cat src/datatable/_build_info.py
159+
160+
echo "------------------------------------------------------------------"
161+
162+
pip --disable-pip-version-check install $datatable_wheel pytest docutils pandas
163+
164+
pytest -ra --maxfail=10 -Werror -vv --showlocals .\tests\

0 commit comments

Comments
 (0)