diff options
| author | Damian Johnson <atagar@torproject.org> | 2016-03-27 14:05:16 -0700 |
|---|---|---|
| committer | Damian Johnson <atagar@torproject.org> | 2016-03-27 14:05:16 -0700 |
| commit | 3519790cb186f1442883c928434819c6637e22d9 (patch) | |
| tree | 5287c849397f2982afa79b1766fa8ed942be0147 | |
| parent | a06302ce5547798d5846c0e99fabccc6640c4a1b (diff) | |
Skip couple manual unit tests on OSX
OSX is still proving an issue for some of these assertions. Skipping the tests
for now...
https://trac.torproject.org/projects/tor/ticket/18660
| -rw-r--r-- | test/unit/manual.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/manual.py b/test/unit/manual.py index be0ee9c7..7d9cf2ab 100644 --- a/test/unit/manual.py +++ b/test/unit/manual.py @@ -131,6 +131,9 @@ class TestManual(unittest.TestCase): if not stem.util.system.is_available('man'): test.runner.skip(self, '(require man command)') return + elif not stem.util.system.is_mac(): + test.runner.skip(self, '(man lacks --encoding arg on OSX, #18660)') + return manual = stem.manual.Manual.from_man(EXAMPLE_MAN_PATH) @@ -151,6 +154,9 @@ class TestManual(unittest.TestCase): if not stem.util.system.is_available('man'): test.runner.skip(self, '(require man command)') return + elif not stem.util.system.is_mac(): + test.runner.skip(self, '(man lacks --encoding arg on OSX, #18660)') + return manual = stem.manual.Manual.from_man(UNKNOWN_OPTIONS_MAN_PATH) |
