forked from orbit-oss/flask
Metadata change
This commit is contained in:
parent
ec863cef5b
commit
8d97d71430
8 changed files with 26 additions and 26 deletions
|
|
@ -1,6 +0,0 @@
|
||||||
git+git://github.com/mitsuhiko/werkzeug.git#egg=Werkzeug
|
|
||||||
git+git://github.com/mitsuhiko/jinja2.git#egg=Jinja2
|
|
||||||
git+git://github.com/mitsuhiko/itsdangerous.git#egg=itsdangerous
|
|
||||||
|
|
||||||
# extra dependencies
|
|
||||||
git+git://github.com/jek/blinker.git#egg=blinker
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
Werkzeug==0.7
|
|
||||||
Jinja2==2.4
|
|
||||||
itsdangerous==0.21
|
|
||||||
|
|
||||||
# extra dependencies
|
|
||||||
blinker==1.0
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# extra dependencies
|
|
||||||
blinker
|
|
||||||
|
|
@ -5,6 +5,7 @@ python:
|
||||||
- "2.7"
|
- "2.7"
|
||||||
- "pypy"
|
- "pypy"
|
||||||
- "3.3"
|
- "3.3"
|
||||||
|
- "3.4"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- REQUIREMENTS=lowest
|
- REQUIREMENTS=lowest
|
||||||
|
|
@ -18,10 +19,11 @@ matrix:
|
||||||
env: REQUIREMENTS=lowest
|
env: REQUIREMENTS=lowest
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install -r .travis-$REQUIREMENTS-requirements.txt
|
- pip install hg+https://bitbucket.org/hpk42/tox
|
||||||
- pip install --editable .
|
|
||||||
|
|
||||||
script: make test
|
script:
|
||||||
|
- tox -e \
|
||||||
|
$(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')-$REQUIREMENTS
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
except:
|
except:
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -3,7 +3,7 @@
|
||||||
all: clean-pyc test
|
all: clean-pyc test
|
||||||
|
|
||||||
test:
|
test:
|
||||||
python run-tests.py
|
py.test
|
||||||
|
|
||||||
tox-test:
|
tox-test:
|
||||||
tox
|
tox
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
||||||
[pytest]
|
|
||||||
norecursedirs= scripts docs
|
|
||||||
|
|
||||||
[aliases]
|
[aliases]
|
||||||
release = egg_info -RDb ''
|
release = egg_info -RDb ''
|
||||||
|
|
||||||
|
|
|
||||||
25
tox.ini
25
tox.ini
|
|
@ -1,12 +1,27 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = docs, py26, py27, pypy, py33, py34
|
envlist =
|
||||||
|
docs
|
||||||
|
{py26,py27,pypy,py33,py34}-{lowest,release,devel}
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps=
|
commands =
|
||||||
blinker
|
py.test []
|
||||||
pytest
|
|
||||||
commands = py.test []
|
|
||||||
|
|
||||||
|
deps=
|
||||||
|
pytest
|
||||||
|
|
||||||
|
lowest: Werkzeug==0.7
|
||||||
|
lowest: Jinja==2.4
|
||||||
|
lowest: itsdangerous==0.21
|
||||||
|
lowest: blinker==1.0
|
||||||
|
release: blinker
|
||||||
|
devel: git+git://github.com/mitsuhiko/werkzeug.git
|
||||||
|
devel: git+git://github.com/mitsuhiko/jinja2.git
|
||||||
|
devel: git+git://github.com/mitsuhiko/itsdangerous.git
|
||||||
|
devel: git+git://github.com/jek/blinker.git
|
||||||
|
|
||||||
|
# extra dependencies
|
||||||
|
git+git://github.com/jek/blinker.git#egg=blinker
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
deps = sphinx
|
deps = sphinx
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue