Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 41 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,47 @@
language: python

python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- pypy
# python:
# - 2.7
# - 3.4
# - 3.5
# - 3.6
# - 3.7
# - pypy
matrix:
include:
- os: linux
dist: xenial
env: PYTHON=3.6 CPP=17 GCC=7
name: Python 3.6, c++17, gcc 7
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
packages:
- g++-7
- python3.6-dev
- python3.6-venv

install:
- pip install .[performance]
before_install:
- |
virtualenv -p python3.6 env
source env/bin/activate
python -m pip install -U pip setuptools wheel

install:
- |
python -m pip install 'pybind11>=2.3'
python -m pip install .[performance]
python -m pip install pytest

script:
- make test
- pip freeze
- which python
- ls -lah /home/travis/build/gavincyi/LightMatchingEngine/env/lib/python3.6
- ls -lah /home/travis/build/gavincyi/LightMatchingEngine/env/lib/python3.6/site-packages
- ls -lah /home/travis/build/gavincyi/LightMatchingEngine/env/lib/python3.6/site-packages/lightmatchingengine
- python -c "import lightmatchingengine"
- python -c "import lightmatchingengine.lightmatchingengine"
- pytest tests/unit
- python tests/performance/performance_test.py --freq 20 --num-orders 500
Empty file removed lightmatchingengine/__init__.py
Empty file.
257 changes: 0 additions & 257 deletions lightmatchingengine/lightmatchingengine.pyx

This file was deleted.

Loading