Skip to content

Commit

Permalink
Push the MJPEG tests to 1080p
Browse files Browse the repository at this point in the history
With #47 fixed, these all seem to pass happily now
  • Loading branch information
waveform80 committed Jan 1, 2015
1 parent 006b825 commit 6d10c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_record.py
Expand Up @@ -88,7 +88,7 @@ def format_options(request):
def expected_failures(resolution, format, options):
if resolution == (2592, 1944) and 'resize' not in options:
pytest.xfail('Cannot encode video at max resolution')
if resolution[1] > 480 and format == 'mjpeg':
if resolution[1] > 1080 and format == 'mjpeg':
pytest.xfail('Locks up camera')


Expand Down

0 comments on commit 6d10c26

Please sign in to comment.