Skip to content

Commit acfb2ad

Browse files
committed
Add info about how to run tests; remove python 3.2 from supported versions
1 parent a490081 commit acfb2ad

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

README.rst

+22-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Python library for reading IMAP mailboxes and converting email content to machin
1212
Requirements
1313
------------
1414

15-
Python (3.2, 3.3, 3.4, 3.5, 3.6)
15+
Python (3.3, 3.4, 3.5, 3.6)
1616

1717

1818
Installation
@@ -114,4 +114,25 @@ Usage
114114
}
115115
116116
117+
Changelog
118+
---------
119+
117120
`Changelog <https://github.com/martinrusev/imbox/blob/master/CHANGELOG.md>`_
121+
122+
123+
Running the tests
124+
-----------------
125+
126+
You can run the imbox tests with ``tox``.
127+
128+
Requirements:
129+
* the supported python versions
130+
* ``tox``. Tox is packaged in Debian and derivatives distributions.
131+
132+
On Ubuntu, you can install several python versions with:
133+
134+
.. code:: sh
135+
136+
sudo add-apt-repository ppa:deadsnakes/ppa
137+
sudo apt update
138+
sudo apt install python3.X

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ def read(filename):
2222
zip_safe=False,
2323
classifiers=(
2424
'Programming Language :: Python',
25-
'Programming Language :: Python :: 3.2',
2625
'Programming Language :: Python :: 3.3',
2726
'Programming Language :: Python :: 3.4',
2827
'Programming Language :: Python :: 3.5',

tox.ini

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[tox]
2+
envlist = py33,py34,py35,py36
3+
4+
[testenv]
5+
deps=nose
6+
commands=nosetests -v

0 commit comments

Comments
 (0)