Skip to content

Commit

Permalink
Update Appveyor script
Browse files Browse the repository at this point in the history
  • Loading branch information
st-pasha committed Jul 1, 2021
1 parent a1e21aa commit cc8aab3
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ build_script:

- ps: >-
# =======================================================================
# Set up required variables
# =======================================================================
$env:DT_HARNESS = "AppVeyor"
Expand Down Expand Up @@ -52,8 +52,9 @@ build_script:
}
# Print out variable's content
# =======================================================================
# Print out variable's content
# =======================================================================
echo "DEFAULT_PATH = $DEFAULT_PATH"
Expand All @@ -75,8 +76,9 @@ build_script:
echo "DT_BUILD_SUFFIX = $env:DT_BUILD_SUFFIX"
# Build and test wheel for Python 3.6
# =======================================================================
# Build and test wheel for Python 3.6
# =======================================================================
$env:PATH = "C:\Python36-x64;C:\Python36-x64\Scripts;$DEFAULT_PATH"
Expand All @@ -97,8 +99,8 @@ build_script:
# =======================================================================
# Build and test wheel for Python 3.7
# =======================================================================
$env:PATH = "C:\Python37-x64;C:\Python37-x64\Scripts;$DEFAULT_PATH"
Expand All @@ -119,8 +121,8 @@ build_script:
# =======================================================================
# Build and test wheel for Python 3.8
# =======================================================================
$env:PATH = "C:\Python38-x64;C:\Python38-x64\Scripts;$DEFAULT_PATH"
Expand All @@ -138,3 +140,25 @@ build_script:
pip --disable-pip-version-check install $datatable_wheel pytest docutils pandas
pytest -ra --maxfail=10 -Werror -vv --showlocals .\tests\
# =======================================================================
# Build and test wheel for Python 3.9
# =======================================================================
$env:PATH = "C:\Python39-x64;C:\Python39-x64\Scripts;$DEFAULT_PATH"
python ci\ext.py wheel
$datatable_wheel = ls dist\*-cp39-*.whl
echo "----- build_info 3.9 ---------------------------------------------"
cat src/datatable/_build_info.py
echo "------------------------------------------------------------------"
pip --disable-pip-version-check install $datatable_wheel pytest docutils pandas
pytest -ra --maxfail=10 -Werror -vv --showlocals .\tests\

0 comments on commit cc8aab3

Please sign in to comment.