File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed
Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 11* .pyc
22* .egg-info
33_files
4+ certs
5+ .vagrant
6+ Vagrantfile
47build
58dist
69tests /debug_ * .py
7- .idea
10+ .tox
11+ .idea
Original file line number Diff line number Diff line change 11language : python
2+ python : " 2.7"
3+
4+ env :
5+ - TOX_ENV=py27
26
37python :
48 - " 2.7"
59
610install :
11+ - pip install -U tox
712 - sudo apt-get -qq install libgmp-dev
813 - pip install -e .
914
1015script :
11- - ./setup.py test
16+ - tox -e $TOX_ENV
Original file line number Diff line number Diff line change 1+ # Tox (http://tox.testrun.org/) is a tool for running tests
2+ # in multiple virtualenvs. This configuration file will run the
3+ # test suite on all supported python versions. To use it, "pip install tox"
4+ # and then run "tox" from this directory.
5+
6+ [tox]
7+ envlist = py27
8+ # , py34
9+
10+ [testenv]
11+ deps =
12+ pytest
13+ pycrypto
14+ requests
15+ commands = python setup.py test
16+
17+ [testenv:py27]
18+ basepython = python2.7
19+
20+ [testenv:py34]
21+ basepython = python3.4
You can’t perform that action at this time.
0 commit comments