forked from vaexio/vaex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
43 lines (37 loc) · 1.7 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
environment:
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda36-x64
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda37-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
build: false
install:
- git submodule update --init --recursive
- call %MINICONDA%\Scripts\activate.bat
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- "conda create -q -n test-environment -c conda-forge python=%PYTHON_VERSION% numpy scipy pyqt matplotlib pyopengl h5py numexpr astropy tornado cython pandas runipy cython pytest numba pyarrow graphviz python-graphviz pcre lightgbm py-xgboost catboost scikit-learn ipydatawidgets ipyvolume bqplot ipympl geopandas"
- activate test-environment
- pip install "tabulate==0.8.3" # issue with 0.8.4 on windows
- pip install "numpy>=1.13" "pyarrow>=0.12"
- pip install -r requirements.txt
- pip install -r requirements-ml.txt
- pushd packages\vaex-core && pip install . && popd
- pushd packages\vaex-hdf5 && pip install . && popd
- pushd packages\vaex-arrow && pip install . && popd
- pushd packages\vaex-viz && pip install . && popd
- pushd packages\vaex-server && pip install . && popd
- pushd packages\vaex-astro && pip install . && popd
- pushd packages\vaex-distributed && pip install . && popd
- pushd packages\vaex-jupyter && pip install . && popd
- pushd packages\vaex-ui && pip install . && popd
- pushd packages\vaex-ml && pip install . && popd
- pushd packages\vaex-graphql && pip install . && popd
test_script:
- python -m vaex.test.dataset TestDataset
- py.test tests/
# - runipy examples/tutorial_ipython_notebook.ipynb
# - runipy examples/advanced_plotting.ipynb