diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2017-04-30 07:24:53 +0200 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2017-04-30 07:24:53 +0200 |
| commit | 0731087704fcae01e424651a05eda1e3eef40840 (patch) | |
| tree | 9a10d77ab8d9d293d2f8b42648fdff077597defe /scripts | |
| parent | fe044f3d3ce3ba796ad26a71625f27f2a91bb091 (diff) | |
| download | psutil-0731087704fcae01e424651a05eda1e3eef40840.tar.gz | |
#1039 / proc.cpu_times / windows was returning int instead of float for children times
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/internal/winmake.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py index c2db0fe3..0c8f8fea 100755 --- a/scripts/internal/winmake.py +++ b/scripts/internal/winmake.py @@ -353,6 +353,13 @@ def test_unicode(): @cmd +def test_contracts(): + """Run contracts tests""" + install() + sh("%s -m unittest -v psutil.tests.test_contracts" % PYTHON) + + +@cmd def test_by_name(): """Run test by name""" try: |
