Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4480d30b
Commit
4480d30b
authored
Oct 01, 2014
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ref #19855: skip uuid test_find_mac on non-Posix as in later branches
parent
ff3e5e37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Lib/test/test_uuid.py
Lib/test/test_uuid.py
+3
-2
No files found.
Lib/test/test_uuid.py
View file @
4480d30b
from
unittest
import
TestCase
import
unittest
from
test
import
support
import
builtins
import
io
...
...
@@ -12,7 +12,7 @@ def importable(name):
except
:
return
False
class
TestUUID
(
TestCase
):
class
TestUUID
(
unittest
.
TestCase
):
last_node
=
None
source2node
=
{}
...
...
@@ -362,6 +362,7 @@ class TestUUID(TestCase):
self
.
assertEqual
(
node1
,
node2
)
@
unittest
.
skipUnless
(
os
.
name
==
'posix'
,
'requires Posix'
)
def
test_find_mac
(
self
):
data
=
'''
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment