Skip to content
This repository was archived by the owner on Feb 3, 2018. It is now read-only.
Open
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
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ TESTS_DIR="tests/"
DOCS_DIR="docs/"
TEMP="temp/"
PYTHONPATH="`pwd`/core:`pwd`/dot"
PYTHON=python
PYTHON3=python3


# General ------------------------------------------------------------
Expand Down Expand Up @@ -67,10 +69,10 @@ test-pre:
reset

test: test-pre
export PYTHONPATH=${PYTHONPATH} && cd ${TESTS_DIR} && python testrunner.py
export PYTHONPATH=${PYTHONPATH} && cd ${TESTS_DIR} && ${PYTHON} testrunner.py

test3: test-pre
export PYTHONPATH=${PYTHONPATH} && cd ${TESTS_DIR} && python3 testrunner.py
export PYTHONPATH=${PYTHONPATH} && cd ${TESTS_DIR} && ${PYTHON3} testrunner.py

tests: test

Expand Down