Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
434aa4ab
Commit
434aa4ab
authored
Feb 05, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two test failures on travis I can't reproduce.
parent
c21b0f86
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
src/greentest/known_failures.py
src/greentest/known_failures.py
+8
-0
src/greentest/test__example_udp_client.py
src/greentest/test__example_udp_client.py
+1
-1
No files found.
src/greentest/known_failures.py
View file @
434aa4ab
...
...
@@ -11,6 +11,7 @@ from greentest.sysinfo import RUNNING_ON_TRAVIS as TRAVIS
from
greentest.sysinfo
import
RUN_LEAKCHECKS
as
LEAKTEST
from
greentest.sysinfo
import
RUN_COVERAGE
as
COVERAGE
from
greentest.sysinfo
import
RESOLVER_NOT_SYSTEM
from
greentest.sysinfo
import
RESOLVER_DNSPYTHON
from
greentest.sysinfo
import
PYPY
from
greentest.sysinfo
import
PY3
...
...
@@ -157,6 +158,13 @@ if PYPY:
'test__socket_dns.py'
,
]
if
TRAVIS
and
RESOLVER_DNSPYTHON
:
FAILING_TESTS
+=
[
# This fails to get the correct results, sometimes. I can't reproduce locally
'FLAKY test__example_udp_server.py'
,
'FLAKY test__example_udp_client.py'
,
]
if
PY3
and
TRAVIS
:
FAILING_TESTS
+=
[
## ---
...
...
src/greentest/test__example_udp_client.py
View file @
434aa4ab
...
...
@@ -17,7 +17,7 @@ class Test_udp_client(TestCase):
server
=
DatagramServer
(
'127.0.0.1:9000'
,
handle
)
server
.
start
()
try
:
run
([
sys
.
executable
,
'-W'
,
'ignore'
'-u'
,
'udp_client.py'
,
'Test_udp_client'
],
run
([
sys
.
executable
,
'-W'
,
'ignore'
,
'-u'
,
'udp_client.py'
,
'Test_udp_client'
],
timeout
=
10
,
cwd
=
'../../examples/'
)
finally
:
server
.
close
()
...
...
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