Skip to content

Development environment

Juan Luis Cano Rodríguez edited this page Feb 14, 2017 · 13 revisions

Linux

~1. Install Anaconda Python 3.6 https://www.continuum.io/downloads#linux

~2. Download latest development version of the project from https://github.com/Juanlu001/pfc-uc3m/archive/master.zip

~3. Create the virtual environment:

$ cd pfc-uc3m
$ conda env create  # Will read environment.yml
$ source activate pfc36
(pfc36) $

~4. Run tests (~15 minutes)

(pfc36) $ cd pfc-uc3m
(pfc36) $ pytest -vvv

To run them in parallel (~5 minutes with 8 cores):

(pfc36) $ pytest -n auto -vvv
Clone this wiki locally