-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
33 lines (28 loc) · 964 Bytes
/
.travis.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
dist: xenial
sudo: required
language: python
python:
- "3.7"
# - "3.8-dev" # 3.8 development branch
# - "nightly" # nightly build
install:
- sudo apt-get install tree
- wget -q https://github.com/jgm/pandoc/releases/download/2.7.2/pandoc-2.7.2-1-amd64.deb
- sudo dpkg -i pandoc-2.7.2-1-amd64.deb
- wget https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.4.0d/linux-pandoc_2_7.tar.gz
- tar xvf linux-pandoc_2_7.tar.gz
- which pandoc
- sudo cp ./pandoc-crossref /usr/bin
- sudo chmod a+x /usr/bin/pandoc-crossref
- pandoc --version
- python --version
- pwd
- mkdir -p ~/.cloudmesh
- wget -P ~/.cloudmesh https://raw.githubusercontent.com/cloudmesh/cloudmesh-configuration/master/cloudmesh/configuration/etc/cloudmesh.yaml
- ls ~/.cloudmesh
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install .
- tree .
- pwd
script: pytest -v --capture=no tests/test_bookmanager.py