summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-05-17 19:45:39 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2020-05-17 19:45:39 +0200
commit592aaf0d54fffdfdecfae5abe693f9882444f7d7 (patch)
tree1b7c57d8a2892fa71872d011849cefced40d6260
parentdbd14f18100279037dc920acb1ab62b1aa908e81 (diff)
downloadpsutil-592aaf0d54fffdfdecfae5abe693f9882444f7d7.tar.gz
fix run
-rw-r--r--.github/workflows/build_wheels.yml4
-rw-r--r--psutil/tests/__init__.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml
index 67eabf1b..0f922b34 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -11,7 +11,7 @@ jobs:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
env:
- CIBW_SKIP: "pp-*manylinux*"
+ CIBW_SKIP: "pp27-*win* cp27-*manylinux* pp-*manylinux*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
steps:
@@ -46,7 +46,7 @@ jobs:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
env:
- CIBW_SKIP: "pp-*manylinux*"
+ CIBW_SKIP: "pp27-*win* *27* cp27-*manylinux* pp-*manylinux*"
CIBW_TEST_COMMAND: python -Wa {project}/psutil/tests/runner.py
CIBW_TEST_COMMAND_MACOS: LC_ALL='en_US.utf8' python -Wa {project}/psutil/tests/runner.py
CIBW_TEST_EXTRAS: test
diff --git a/psutil/tests/__init__.py b/psutil/tests/__init__.py
index db3f7027..df94d737 100644
--- a/psutil/tests/__init__.py
+++ b/psutil/tests/__init__.py
@@ -1080,10 +1080,10 @@ def print_sysinfo():
info['time'] = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
info['user'] = getpass.getuser()
info['pid'] = os.getpid()
- print("=" * 70, flush=True) # NOQA
+ print("=" * 70) # NOQA
for k, v in info.items():
- print("%-14s %s" % (k + ':', v), flush=True) # NOQA
- print("=" * 70, flush=True) # NOQA
+ print("%-14s %s" % (k + ':', v)) # NOQA
+ print("=" * 70) # NOQA
def _get_eligible_cpu():