forked from vaexio/vaex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
37 lines (31 loc) · 1.24 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
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 -y -q -n vaex-dev -c arrow-nightlies -c conda-forge python=%PYTHON_VERSION% --file ci/conda-env.yml --file ci/conda-env-nightlies.yml"
- activate vaex-dev
- pip install -r requirements-ml.txt
- pushd packages\vaex-core && pip install . && popd
- pushd packages\vaex-hdf5 && 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/