forked from weslleymberg/eispatterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
30 lines (20 loc) · 979 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
all: deps test
deps: specloud ludibrio should-dsl fluidity extreme_fluidity
specloud:
@python -c 'import specloud' 2>/dev/null || pip install --no-deps specloud -r https://github.com/hugobr/specloud/raw/master/requirements.txt
ludibrio:
@python -c 'import ludibrio' 2>/dev/null || pip install -e git+https://github.com/nsigustavo/ludibrio.git#egg=ludibrio
should-dsl:
@python -c 'import should_dsl' 2>/dev/null || pip install -e git+https://github.com/hugobr/should-dsl.git#egg=should_dsl
fluidity:
@python -c 'import fluidity' 2>/dev/null || pip install -e git+https://github.com/nsi-iff/fluidity.git#egg=fluidity
extreme_fluidity:
@python -c 'import xfluidity' 2>/dev/null || pip install -e git+https://github.com/nsi-iff/extreme_fluidity.git#egg=extreme_fluidity
path:
export PYTHONPATH=.
test: unit
unit: specloud ludibrio should-dsl path
@echo =======================================
@echo ========= Running unit specs ==========
@specloud spec
@echo