Skip to content

Commit

Permalink
Skip python tests using -pR
Browse files Browse the repository at this point in the history
  • Loading branch information
piponazo committed Nov 22, 2018
1 parent b9c079c commit 9a84d4b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/bugfixes/github/test_CVE_2018_9145.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# -*- coding: utf-8 -*-

import system_tests
import unittest


@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class SubBoxLengthDataBufAbort(metaclass=system_tests.CaseMeta):

url = "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-9145"
Expand Down
3 changes: 2 additions & 1 deletion tests/bugfixes/github/test_issue_216.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# -*- coding: utf-8 -*-

import system_tests
import unittest


@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class UncontrolledRecursion(metaclass=system_tests.CaseMeta):
url = "https://github.com/Exiv2/exiv2/issues/216"

Expand Down
3 changes: 2 additions & 1 deletion tests/bugfixes/github/test_issue_511.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# -*- coding: utf-8 -*-

import system_tests
import unittest


@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class ThrowsWhenIFDsAreMalformed(metaclass=system_tests.CaseMeta):
url = "https://github.com/Exiv2/exiv2/issues/511"

Expand Down
2 changes: 2 additions & 0 deletions tests/bugfixes/redmine/test_issue_1108.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# -*- coding: utf-8 -*-

import system_tests
import unittest

@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class CheckDumpSubFiles(metaclass=system_tests.CaseMeta):

url = "http://dev.exiv2.org/issues/1108"
Expand Down

0 comments on commit 9a84d4b

Please sign in to comment.