Commit 4550374f authored by Jason Madden's avatar Jason Madden

The subnormal test is difficult on CI.

parent d9e2479b
import sys import sys
import unittest import unittest
from gevent import testing as greentest
class TestSubnormalFloatsAreNotDisabled(unittest.TestCase): class TestSubnormalFloatsAreNotDisabled(unittest.TestCase):
@greentest.skipOnCI('Some of our tests we compile with -Ofast, which breaks this.')
def test_subnormal_is_not_zero(self): def test_subnormal_is_not_zero(self):
# Enabling the -Ofast compiler flag resulted in subnormal floats getting # Enabling the -Ofast compiler flag resulted in subnormal floats getting
# disabled the moment when gevent was imported. This impacted libraries # disabled the moment when gevent was imported. This impacted libraries
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment