๐Ÿ“ฆ SeleniumHQ / mobile-spec

๐Ÿ“„ Makefile ยท 20 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20all: clean download-apps build-apps test

test:
	nosetests tests

download-apps: clean
	cd apps/src; \
	    curl -LO http://developer.apple.com/library/ios/samplecode/UICatalog/UICatalog.zip; \
	    unzip UICatalog.zip; \
	    rm UICatalog.zip

build-apps:
	cd apps/src/UICatalog; \
	    xcodebuild -sdk iphonesimulator6.1 -arch i386; \
	    mv build/Release-iphonesimulator/UICatalog.app ../../built/

clean:
	rm -rf apps/built
	rm -rf apps/src/UICatalog