Skip to content

Commit

Permalink
Whoops, fix definition of CFFI_BACKEND in tests; led to some test err…
Browse files Browse the repository at this point in the history
…ors on Travis.
  • Loading branch information
jamadden committed Feb 12, 2018
1 parent 2d7fe7d commit 007587a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/greentest/greentest/sysinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

# XXX: Formalize this better
LIBUV = 'libuv' in gevent.core.loop.__module__ # pylint:disable=no-member
CFFI_BACKEND = bool(os.getenv('GEVENT_CORE_CFFI_ONLY')) or PYPY
CFFI_BACKEND = PYPY or LIBUV or 'cffi' in os.getenv('GEVENT_LOOP', '')

if '--debug-greentest' in sys.argv:
sys.argv.remove('--debug-greentest')
Expand Down

0 comments on commit 007587a

Please sign in to comment.