Skip to content

Commit c9ab65d

Browse files
author
Elias Nygren
committed
add tox.ini and info on supported versions
1 parent 560ebae commit c9ab65d

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ dist/
88
*.egg-info
99
*.sublime-workspace
1010
docs/html/
11+
.tox

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ Alternatively, clone the project and run
1717
python setup.py install
1818
```
1919

20+
**Supported versions** (offline tests pass with tox):
21+
22+
* python 3.2
23+
* python 3.3
24+
* python 3.4
25+
* python 3.5
26+
* pypi3 2.4.0
27+
2028
## Features
2129
* OOP based management of Servers, Storages and IP-addresses with full CRUD.
2230
* Clear way to define your infrastructure, emphasis on clear and easy syntax
@@ -158,6 +166,12 @@ Tests located in `project_root/tests/` directory. Run with:
158166
py.test tests/
159167
```
160168

169+
To test against python3.2=< and pypy3-2.4.0, run:
170+
171+
```python
172+
tox
173+
```
174+
161175
## Bugs, Issues, Problems, Ideas
162176

163177
Feel free to open a new issue : )

tox.ini

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 = py32, py33, py34, py35, pypy3
8+
9+
[testenv]
10+
commands = py.test tests/
11+
deps = -rrequirements.txt

0 commit comments

Comments
 (0)