Skip to content

Commit

Permalink
Merge pull request #61 from AsyncAlgoTrading/features
Browse files Browse the repository at this point in the history
Features
  • Loading branch information
timkpaine committed Aug 3, 2020
2 parents 338232a + a2e4a1d commit 73de7de
Show file tree
Hide file tree
Showing 60 changed files with 2,471 additions and 513 deletions.
8 changes: 0 additions & 8 deletions .dockerignore

This file was deleted.

10 changes: 0 additions & 10 deletions Dockerfile

This file was deleted.

10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@ PYTHON=python3.7
CONFIG=./config/synthetic.cfg


run: build ## Clean and make target, run target
run: ## Clean and make target, run target
$(PYTHON) -m aat $(CONFIG)

iex: ## Clean and make target, run target
$(PYTHON) -m aat ./config/iex.cfg

runcpp: build ## Clean and make target, run target
AAT_USE_CPP=1 $(PYTHON) -m aat $(CONFIG)

rundebug: debug ## Clean and make debug target, run target
$(PYTHON) -m aat $(CONFIG)

buildextf: ## build the package extensions
$(PYTHON) setup.py build_ext -j8 --inplace -f

buildext: ## build the package extensions
$(PYTHON) setup.py build_ext -j8 --inplace

Expand All @@ -33,7 +39,7 @@ testpy: ## Make unit tests

testpycpp: ## Make unit tests
# AAT_USE_CPP=1 $(PYTHON) -m pytest -vvv ./aat/tests --cov=aat --junitxml=python_junit.xml --cov-report=xml --cov-branch --capture=no
AAT_USE_CPP=1 $(PYTHON) -m pytest -s ./aat/tests
AAT_USE_CPP=1 $(PYTHON) -m pytest -vs ./aat/tests

testjs: ## Make js tests
cd js; yarn test
Expand Down

0 comments on commit 73de7de

Please sign in to comment.