forked from Stratoscale/rackattack-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
14 lines (12 loc) · 680 Bytes
/
Makefile
File metadata and controls
14 lines (12 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: check_convention
check_convention:
pep8 py test* --max-line-length=109
#this can not run in dirbalak clean build, as solvent can not yet be run at this point (still running in
#rootfs-build-nostrato, this project is a dependency of rootfs-buid). This is why this is actually being
#run in pyracktest
delayed_racktest:
UPSETO_JOIN_PYTHON_NAMESPACES=yes PYTHONPATH=$(PWD):$(PWD)/py python test/test.py
virttest:
RACKATTACK_PROVIDER=tcp://localhost:1014@tcp://localhost:1015@http://localhost:1016 $(MAKE) delayed_racktest
phystest:
RACKATTACK_PROVIDER=tcp://rackattack-provider:1014@tcp://rackattack-provider:1015@http://rackattack-provider:1016 $(MAKE) delayed_racktest