Add Python 3.7 to CI unit test matrix. (#34680)

* Add Python 3.7 to CI unit test matrix.
* Fix `os.errno` reference to be `errno`.
* Update test_aci unit test for Python 3.7.
This commit is contained in:
Matt Clay 2018-01-10 00:57:11 -08:00 committed by GitHub
parent f2037bb629
commit 30093dc4ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,4 @@
import errno
import os
import time
import mock
@ -64,7 +65,7 @@ def placeboify(request, monkeypatch):
# make sure the directory for placebo test recordings is available
os.makedirs(recordings_path)
except OSError as e:
if e.errno != os.errno.EEXIST:
if e.errno != errno.EEXIST:
raise
pill = placebo.attach(session, data_path=recordings_path)