Skip to content

Commit

Permalink
Add funcsigs patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jbn committed Jul 24, 2018
1 parent f9f353e commit 68b55f0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ matrix:
- python: 3.6
env: TOX_ENV=flake8

install: pip install -U tox-travis funcsigs coveralls pytest
install:
- pip uninstall -y funcsigs || true
- pip install -U tox-travis coveralls pytest
- pip install -r requirements_dev.txt

script:
- tox -e $TOX_ENV
Expand Down
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ environment:

install:
- "%PYTHON%/Scripts/easy_install -U pip"
- "%PYTHON%/Scripts/pip install tox wheel funcsigs"
- "%PYTHON%/Scripts/pip install tox wheel"
- "%PYTHON%/Scripts/pip install git+git://github.com/jbn/funcsigs.git@214840c53529f019638229d72dcf2257fe154458"

build: false # Not a C# project, build stuff at the test step instead.

Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ twine==1.10.0

pytest==3.4.2
pytest-runner==2.11.1
git+git://github.com/jbn/funcsigs.git@214840c53529f019638229d72dcf2257fe154458#egg=funcsigs
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
envlist = py27,py35,py36,pypy,flake8

[testenv]
deps =
pytest>=3.0
deps = -rrequirements_dev.txt
commands = pytest {posargs:tests}

[testenv:flake8]
Expand Down

0 comments on commit 68b55f0

Please sign in to comment.