Skip to content

Commit

Permalink
Merge pull request #4858 from aleksandra-tarkowska/rebased/metadata52…
Browse files Browse the repository at this point in the history
…/cap-pytest

Cap pytest to below 3.0 (rebased onto metadata52)
  • Loading branch information
joshmoore authored Sep 22, 2016
2 parents ea4d95c + 48b661e commit 83b1e83
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions components/tools/OmeroFS/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Copyright 2008 Glencoe Software, Inc. All rights reserved.
Copyright 2008-2016 Glencoe Software, Inc. All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
"""
Expand Down Expand Up @@ -33,4 +33,4 @@
package_dir={"": "target"},
packages=[''],
cmdclass={'test': PyTest},
tests_require=['pytest'])
tests_require=['pytest != 3.0.0, != 3.0.1, != 3.0.2'])
4 changes: 2 additions & 2 deletions components/tools/OmeroPy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
./setup.py test --pdb
Copyright 2007-2013 Glencoe Software, Inc. All rights reserved.
Copyright 2007-2016 Glencoe Software, Inc. All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
"""
Expand Down Expand Up @@ -67,4 +67,4 @@
'omero.gateway': ['pilfonts/*'],
'omero.gateway.scripts': ['imgs/*']},
cmdclass={'test': PyTest},
tests_require=['pytest'])
tests_require=['pytest != 3.0.0, != 3.0.1, != 3.0.2'])
4 changes: 2 additions & 2 deletions components/tools/OmeroWeb/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Copyright 2008 Glencoe Software, Inc. All rights reserved.
Copyright 2008-2016 Glencoe Software, Inc. All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
"""
Expand Down Expand Up @@ -51,5 +51,5 @@
packages=[''],
test_suite='test.suite',
cmdclass={'test': PyTest},
tests_require=['pytest'],
tests_require=['pytest != 3.0.0, != 3.0.1, != 3.0.2'],
)

0 comments on commit 83b1e83

Please sign in to comment.