diff options
author | Thais Siqueira <thais.siqueira@gmail.com> | 2017-04-25 16:31:56 -0300 |
---|---|---|
committer | Thais Siqueira <thais.siqueira@gmail.com> | 2017-04-26 11:34:38 -0300 |
commit | 3e639b17b5d2a43b6428e07f1106803965c9ab31 (patch) | |
tree | 88b6c7eb4c6971c94d7c88857c702ea6154c859c /Makefile | |
parent | 5310a7791eac565ba451fbe9c8f2f3d29ffb9df6 (diff) |
Adds step do run smoke tests
with @tayanefernandes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -82,6 +82,12 @@ functional_tests: clean requirements install cd service;\ xvfb-run --server-args="-screen 0 1280x1024x24" behave --tags ~@wip --tags ~@smoke test/functional/features +smoke_tests: clean install + @. $(VIRTUALENV)/bin/activate;\ + export PATH=$(PATH):/usr/lib/chromium/;\ + cd service;\ + xvfb-run --server-args="-screen 0 1280x1024x24" behave --tags ~@wip --tags @smoke test/functional/features -k -D host=$(provider) + functional_tests_ci: clean requirements install @. $(VIRTUALENV)/bin/activate;\ cd service;\ |