forked from MultiQC/MultiQC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
46 lines (40 loc) · 1.96 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
44
45
46
# AppVeyor config file, for automated CI testing on Windows
# See https://ci.appveyor.com/project/ewels/multiqc for tests.
# Inspiration for this file taken from HyperSpy: https://github.com/hyperspy/hyperspy
shallow_clone: true
clone_depth: 1
environment:
matrix:
- PYTHON: "C:\\Miniconda"
PYTHON_VERSION: "2.7.x"
- PYTHON: "C:\\Miniconda3"
PYTHON_VERSION: "3.4.x"
- PYTHON: "C:\\Miniconda35"
PYTHON_VERSION: "3.5.x"
- PYTHON: "C:\\Miniconda36"
PYTHON_VERSION: "3.6.x"
init:
- "ECHO %PYTHON% %PYTHON_VERSION%"
- "ECHO %APPVEYOR_BUILD_FOLDER%"
- "ECHO %CMD_IN_ENV%"
install:
# Prepend Python to the PATH and check version
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
# Install everything
- "%CMD_IN_ENV% conda update --yes --quiet conda"
- "%CMD_IN_ENV% conda install --yes --quiet pip jinja2 simplejson pyyaml click numpy matplotlib"
- "pip install -q spectra"
- "python setup.py -q install"
# Download and extract test data and get ready
- "curl -fsSL https://github.com/ewels/MultiQC_TestData/archive/master.zip -o test_data.zip"
- '7z x test_data.zip -y -o"%APPVEYOR_BUILD_FOLDER%"'
- "mkdir empty_dir"
# Not a C# project, nothing to build
build: false
test_script:
- 'python %APPVEYOR_BUILD_FOLDER%\scripts\multiqc %APPVEYOR_BUILD_FOLDER%\MultiQC_TestData-master\data'
- 'python %APPVEYOR_BUILD_FOLDER%\scripts\multiqc %APPVEYOR_BUILD_FOLDER%\MultiQC_TestData-master\data -m fastqc -f -d -dd 1 -i "Forced Report" -b "This command has lots of options" -n custom_fn --no-data-dir'
- 'python %APPVEYOR_BUILD_FOLDER%\scripts\multiqc %APPVEYOR_BUILD_FOLDER%\MultiQC_TestData-master\data -f -v --flat -e star -x ngi -s -z'
- 'python %APPVEYOR_BUILD_FOLDER%\scripts\multiqc %APPVEYOR_BUILD_FOLDER%\MultiQC_TestData-master\data -m star -o %APPVEYOR_BUILD_FOLDER%\MultiQC_TestData-master\tests\multiqc_report_dev -t default_dev -k json'
- 'python %APPVEYOR_BUILD_FOLDER%\scripts\multiqc -f empty_dir'