-
Notifications
You must be signed in to change notification settings - Fork 687
/
appveyor.yml
38 lines (33 loc) · 1.02 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
build: false
environment:
matrix:
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.10"
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.7"
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.3"
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3
- PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: "3.9.1"
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
# Useful for debugging any issues with conda
- conda info -a
# Replace dep1 dep2 ... with your dependencies
- conda install -c r r r-rmarkdown r-ggplot2 r-plotly
- conda install -c conda-forge pandoc
install:
- "%PYTHON%/Scripts/pip.exe install autopep8 pep8"
- "%PYTHON%/Scripts/pip.exe install .[all]"
test_script:
- "run_tests.bat"