I'm trying to add something to Hyper and I'm following the contribution guide and getting testing working before making the changes. I have Travis-CI already set up with my GitLab account, so I just enabled it for my fork.
When I run it (even without any changes), Python 2.7 and Python 3.4 fail:
pkg_resources.VersionConflict: (pytest 2.6.4 (/home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages), Requirement.parse('pytest>=2.7.0'))
Coverage.py warning: No data was collected. (no-data-collected)
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.VersionConflict: (pytest 2.6.4 (/home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages), Requirement.parse('pytest>=2.7.0'))
Coverage.py warning: No data was collected. (no-data-collected)
pkg_resources.VersionConflict: (pytest 2.6.4 (/home/travis/virtualenv/python3.4.2/lib/python3.4/site-packages), Requirement.parse('pytest>=2.7.0'))
Coverage.py warning: No data was collected. (no-data-collected)
pkg_resources.VersionConflict: (pytest 2.6.4 (/home/travis/virtualenv/python3.4.2/lib/python3.4/site-packages), Requirement.parse('pytest>=2.7.0'))
Coverage.py warning: No data was collected. (no-data-collected)
I'm trying to add something to Hyper and I'm following the contribution guide and getting testing working before making the changes. I have Travis-CI already set up with my GitLab account, so I just enabled it for my fork.
When I run it (even without any changes), Python 2.7 and Python 3.4 fail:
lawnmowerlatte / hyper > Build 3
I think this is related to travis-ci 5635. I was able to fix the problem by specifying
pytest>=2.7
intest_requirements.txt
. (See lawnmowerlatte / hyper > build 4I'll submit a PR.