Skip to content
This repository has been archived by the owner on Jan 19, 2018. It is now read-only.

Commit

Permalink
Allow running functional tests from make file.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtnpro committed Aug 31, 2016
1 parent 2028e18 commit d5984ee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ test:
pip install -qr test-requirements.txt
$(PYTHON) -m pytest tests/ -vv --cov atomicapp

.PHONY: functional-test
functional-test:
pip install -qr requirements.txt
pip install -qr test-requirements.txt
$(PYTHON) -m pytest tests/functional/ -vv --cov atomicapp

.PHONY: image
image:
$(DOCKER) build -t $(tag) .
Expand Down

0 comments on commit d5984ee

Please sign in to comment.