-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
31 lines (25 loc) · 912 Bytes
/
azure-pipelines.yml
File metadata and controls
31 lines (25 loc) · 912 Bytes
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
# See https://docs.microsoft.com/azure/devops/pipelines/languages/python
jobs:
- job:
displayName: ubuntu-latest
pool:
vmImage: 'ubuntu-latest'
steps:
- script: echo "##vso[task.prependpath]$CONDA/bin"
displayName: Add conda to PATH
- script: conda create --yes --quiet --name longstitch_ci
displayName: Create Anaconda environment
- script: |
conda install --yes --quiet -c conda-forge conda==4.11.0
source activate longstitch_ci
conda --version
conda install --yes --quiet --name longstitch_ci -c conda-forge -c bioconda tigmint ntlink arcs pandas pytest samtools links==1.8.7
displayName: Install Anaconda packages
- script: |
./longstitch
displayName: Test makefile help page
- script: |
source activate longstitch_ci
cd tests
pytest -vs longstitch_tests.py
displayName: Run pytests