forked from horejsek/python-webdriverwrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (24 loc) · 627 Bytes
/
Makefile
File metadata and controls
34 lines (24 loc) · 627 Bytes
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
30
31
32
33
34
PYTHON=`which python`
PYTHON3=`which python3`
test:
cd tests; $(PYTHON) alltests.py
cd tests; $(PYTHON3) alltests.py
source:
$(PYTHON) setup.py sdist
upload:
$(PYTHON) setup.py register sdist upload
install:
$(PYTHON) setup.py install
$(PYTHON3) setup.py install
clean:
$(PYTHON) setup.py clean
rm -rf build/ MANIFEST
find . -name '*.pyc' -delete
install-libs:
apt-get install python-pip
pip-2.7 install -U selenium nose
pip-3.2 install -U selenium nose
install-building-packages:
apt-get install build-essential dh-make debhelper devscripts
pip-2.7 install -U setuptools
pip-3.2 install -U setuptools