-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathtox.ini
More file actions
34 lines (28 loc) · 751 Bytes
/
tox.ini
File metadata and controls
34 lines (28 loc) · 751 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
32
33
34
# tox (https://tox.readthedocs.io/)
[tox]
envlist =
py27
py36
[testenv]
whitelist_externals =
/usr/bin/wget
/usr/local/bin/tar
/usr/local/bin/cp
/usr/bin/sudo
setenv =
RAYPATH = /usr/local/lib/ray
PATH = /usr/local/bin
commands =
wget https://github.com/NREL/Radiance/releases/download/5.2.1/radiance-5.2.91bcc23df3-Linux.tar.gz
tar -xzvf radiance-5.2.91bcc23df3-Linux.tar.gz
sudo cp -a radiance-5.2.91bcc23df3-Linux/usr/local/radiance/bin/. /usr/local/bin
sudo cp -a radiance-5.2.91bcc23df3-Linux/usr/local/radiance/lib/. /usr/local/lib/ray
sudo apt-get install libtiff5
pip install -U lbt-ladybug
pytest --cov=honeybee tests/
deps =
pytest
pytest-cov
euclid3
[flake8]
max-line-length = 89