mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-03 15:51:30 -07:00
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:
parent
f2037bb629
commit
30093dc4ed
3 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue