Do ./setup.py sdist before testing in test_pure
[sympy.git] / bin / test_pure
blob50d9fd9bac6170b64e581e2b5cb6756d18960d94
1 # This script is for testig SymPy in pure Python environment
2
3 # Usage
4 # -----
5 # In this directory execute:
7 # $ sudo cowbuilder --update
8 # $ sudo cowbuilder --execute test_pure
10 # This will first update the base system and then execute this script in that
11 # environment.
13 # In order for this to work, you need to have the cowbuilder environment setup,
14 # which you can do in this way:
16 # $ sudo apt-get install cowdancer
17 # $ sudo cowbuilder --create --mirror http://ftp.cz.debian.org/debian
20 apt-get -y install mercurial python python-codespeak-lib
21 cd /tmp
22 hg clone http://hg.sympy.org/sympy/
23 cd sympy
24 ./setup.py sdist
25 cd dist
26 tar xzf *.tar.gz
27 cd sympy*
28 ./setup.py test