Skip to content

Commit

Permalink
added echos in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Jul 22, 2014
1 parent 2b8d518 commit 3334e4d
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ clean:
@rm -rf nodeenv/

test1:
@echo " * test1: separate nodejs's env"
@echo " ="
@echo " = test1: separate nodejs's env"
@echo " ="
@rm -rf env && \
virtualenv --no-site-packages env && \
. env/bin/activate && \
Expand All @@ -32,15 +34,19 @@ test1:
nodeenv -j 4 nodeenv

test2:
@echo " * test2: the same virtualenv's env, with 4 jobs"
@echo " ="
@echo " = test2: the same virtualenv's env, with 4 jobs"
@echo " ="
@rm -rf env && \
virtualenv --no-site-packages env && \
. env/bin/activate && \
python setup.py install && \
nodeenv -j 4 -p

test3:
@echo " * test3: the same virtualenv's env, without any params"
@echo " ="
@echo " = test3: the same virtualenv's env, without any params"
@echo " ="
@rm -rf env && \
virtualenv --no-site-packages env && \
. env/bin/activate && \
Expand All @@ -49,7 +55,9 @@ test3:

# https://github.com/ekalinin/nodeenv/issues/43
test4:
@echo " * test4: separate nodejs's env for python3.4"
@echo " ="
@echo " = test4: separate nodejs's env for python3.4"
@echo " ="
@rm -rf env && \
virtualenv --no-site-packages --python=python3.4 env && \
. env/bin/activate && \
Expand All @@ -58,7 +66,9 @@ test4:
nodeenv -p --node=system

test5:
@echo " * test5: prebuilt nodejs's env for python2"
@echo " ="
@echo " = test5: prebuilt nodejs's env for python2"
@echo " ="
@rm -rf env && \
virtualenv --no-site-packages --python=python2.7 env && \
. env/bin/activate && \
Expand Down

0 comments on commit 3334e4d

Please sign in to comment.