Commit e4d74cd7 authored by drallensmith's avatar drallensmith

Merge branch 'master' into add_preprocess_action - avoid rebase

parents d0cd2315 8f9b158f
...@@ -14,14 +14,16 @@ install: ...@@ -14,14 +14,16 @@ install:
brew install cartr/qt4/qt brew install cartr/qt4/qt
; ;
fi fi
- sudo pip install nose numpy - sudo -H pip install nose numpy
os: os:
- linux - linux
- osx - osx
compiler: compiler:
- clang - clang
- gcc - gcc
env:
- PYTHONPATH="."
script: script:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=RelwithDebInfo .. && make -j4 && make install - cmake -DCMAKE_BUILD_TYPE=RelwithDebInfo .. && make -j4 && make install
- cd .. && nosetests --exe - cd .. && pip install --user . && nosetests --exe tests/test_basic.py
from hfo_py.hfo import * try:
from hfo_py.hfo import *
except ImportError:
from hfo import *
import os import os
def get_hfo_path(): def get_hfo_path():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment