Skip to content

Commit

Permalink
remove provisional code
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed May 17, 2020
1 parent a5cfc4f commit f0e6cd9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 81 deletions.
77 changes: 0 additions & 77 deletions .github/workflows/build_wheels.yml

This file was deleted.

2 changes: 0 additions & 2 deletions psutil/tests/test_windows.py
Expand Up @@ -94,13 +94,11 @@ def test_cpu_count_vs_GetSystemInfo(self):
self.assertEqual(sys_value, psutil_value)

def test_cpu_count_logical_vs_wmi(self):
return # XXX
w = wmi.WMI()
proc = w.Win32_Processor()[0]
self.assertEqual(psutil.cpu_count(), proc.NumberOfLogicalProcessors)

def test_cpu_count_phys_vs_wmi(self):
return # XXX
w = wmi.WMI()
proc = w.Win32_Processor()[0]
self.assertEqual(psutil.cpu_count(logical=False), proc.NumberOfCores)
Expand Down
2 changes: 0 additions & 2 deletions scripts/internal/win_download_wheels.py
Expand Up @@ -10,8 +10,6 @@
Readapted from the original recipe of Ibarra Corretge'
<saghul@gmail.com>:
http://code.saghul.net/index.php/2015/09/09/
NOTE: no longer used (use use GitHub actions).
"""

from __future__ import print_function
Expand Down

0 comments on commit f0e6cd9

Please sign in to comment.