Add tox support
parent
a53b2827a9
commit
e00515c160
@ -0,0 +1 @@
|
||||
Django==1.8.7
|
@ -0,0 +1,11 @@
|
||||
#! /usr/bin/env python
|
||||
|
||||
from distutils.core import setup
|
||||
|
||||
setup(name='WordChallenge',
|
||||
version='0.1',
|
||||
description='100(ish) word challenge',
|
||||
author='Gergely Polonkai',
|
||||
author_email='gergely@polonkai.eu',
|
||||
url='https://github.com/gergelypolonkai/word-challenge',
|
||||
packages=['wordchallenge', 'words'])
|
@ -0,0 +1,13 @@
|
||||
# Tox (http://tox.testrun.org/) is a tool for running tests
|
||||
# in multiple virtualenvs. This configuration file will run the
|
||||
# test suite on all supported python versions. To use it, "pip install tox"
|
||||
# and then run "tox" from this directory.
|
||||
|
||||
[tox]
|
||||
envlist = py27,py34
|
||||
|
||||
[testenv]
|
||||
commands = coverage run manage.py test
|
||||
deps =
|
||||
-rrequirements.txt
|
||||
coverage
|
Loading…
Reference in New Issue