mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
zdtm: sort import lines
These changes have been auto-generated with:
pip3 install isort autoflake
isort -rc -sl zdtm.py
autoflake --remove-all-unused-imports -i zdtm.py
isort -rc -m 3 zdtm.py
Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
parent
0b79653973
commit
0734fc807f
1 changed files with 11 additions and 6 deletions
17
test/zdtm.py
17
test/zdtm.py
|
|
@ -1,5 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||
from __future__ import (
|
||||
absolute_import,
|
||||
division,
|
||||
print_function,
|
||||
unicode_literals
|
||||
)
|
||||
|
||||
import argparse
|
||||
import atexit
|
||||
|
|
@ -14,6 +19,7 @@ import random
|
|||
import re
|
||||
import shutil
|
||||
import signal
|
||||
import socket
|
||||
import stat
|
||||
import string
|
||||
import struct
|
||||
|
|
@ -21,13 +27,12 @@ import subprocess
|
|||
import sys
|
||||
import tempfile
|
||||
import time
|
||||
import socket
|
||||
from builtins import (input, int, open, range, str, zip)
|
||||
|
||||
import pycriu as crpc
|
||||
from builtins import input, int, open, range, str, zip
|
||||
|
||||
import yaml
|
||||
|
||||
import pycriu as crpc
|
||||
|
||||
# File to store content of streamed images
|
||||
STREAMED_IMG_FILE_NAME = "img.criu"
|
||||
|
||||
|
|
@ -1933,7 +1938,7 @@ class Launcher:
|
|||
|
||||
if opts['report'] and (opts['keep_going'] or self.__total == 1):
|
||||
global TestSuite, TestCase
|
||||
from junit_xml import TestSuite, TestCase
|
||||
from junit_xml import TestCase, TestSuite
|
||||
now = datetime.datetime.now()
|
||||
att = 0
|
||||
reportname = os.path.join(report_dir, "criu-testreport.tap")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue