From 273c240e6cefba97b4c74b10da34402e6a173673 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Wed, 6 Feb 2019 17:34:26 -0800 Subject: [PATCH] Attempt #2 to make travis happy. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1f10aa71..f489e492 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,6 @@ env: virtualenv --python=python3 --system-site-packages env $(IN_ENV) pip install -r requirements.txt $(IN_ENV) pip install -r docs/requirements.txt - ln -sf $(PWD)/prjxray env/lib/python3.*/site-packages/ - ln -sf $(PWD)/third_party/fasm/ env/lib/python3.*/site-packages/ $(IN_ENV) python -c "import yaml" || (echo "Unable to find python-yaml" && exit 1) build: @@ -25,7 +23,7 @@ test: test-py test-cpp @true test-py: - $(IN_ENV) py.test $(TEST_EXCLUDE) --doctest-modules --junitxml=build/py_test_results.xml + $(IN_ENV) PYTHONPATH="$(PWD):$(PWD)/third_party/fasm:$PYTHONPATH" py.test $(TEST_EXCLUDE) --doctest-modules --junitxml=build/py_test_results.xml test-cpp: mkdir -p build