Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | pep8ify | Giampaolo Rodola' | 2013-11-22 | 1 | -10/+13 | |
| | ||||||
* | tests refactoring | Giampaolo Rodola' | 2013-10-07 | 1 | -33/+3 | |
| | ||||||
* | Fix issue 438: psutil won't compile on kernels < 2.6.36 due to missing ↵ | Giampaolo Rodola' | 2013-10-03 | 1 | -0/+63 | |
| | | | | prlimit(2) syscall. | |||||
* | fix test/_linux.py's test_cpu_times failing due to a incorrect regular ↵ | Giampaolo Rodola' | 2013-08-24 | 1 | -1/+1 | |
| | | | | expression. (patch by arfrever, issue 420) | |||||
* | further test refactoring: get rid of assert_eq_w_tol() and use ↵ | Giampaolo Rodola' | 2013-06-10 | 1 | -7/+13 | |
| | | | | assertAlmostEqual instead; also use skip* decorators around get_nice and uids/gids tests | |||||
* | Issue 391: take advantage of new assert* methods and provide a workaround if ↵ | Giampaolo Rodola' | 2013-06-10 | 1 | -6/+6 | |
| | | | | unittest2 module is not installed | |||||
* | Issue 391: start transition to unittest2 by making skipIf and skipUnless ↵ | Giampaolo Rodola' | 2013-06-10 | 1 | -1/+1 | |
| | | | | decorators closer to original unittest2 version | |||||
* | update psutil project ownership | Giampaolo Rodola' | 2013-06-08 | 1 | -1/+1 | |
| | ||||||
* | tests refactoring | Giampaolo Rodola' | 2013-05-29 | 1 | -12/+2 | |
| | ||||||
* | move TOLERANCE variable into test_psutil.py so that it's generic for all ↵ | Giampaolo Rodola' | 2013-05-15 | 1 | -4/+2 | |
| | | | | OS-specific tests | |||||
* | (issue 380) make also platform specific tests exits with non-zero on failure | Giampaolo Rodola' | 2013-05-13 | 1 | -2/+7 | |
| | ||||||
* | (issue 379): fix a couple of other failures | Giampaolo Rodola' | 2013-05-13 | 1 | -1/+3 | |
| | ||||||
* | Introduce a decorator which runs a test function and retries N times before ↵ | Giampaolo Rodola' | 2013-05-13 | 1 | -1/+8 | |
| | | | | | | | actually failing. This is useful When comparing (say) OS free memory with cmdline tools: the two results (psutil's and cmdline tool's) may differ now instead of later. See for example: https://code.google.com/p/psutil/issues/attachmentText?id=379&aid=3790000000&name=psutil-0.7.1_build.log&token=YNa7Qq67Nppy7rAXmBbjMJG4FNo%3A1368391020458#329 | |||||
* | (issue 379) disk_partitions(): skip linux specific disk_partitions() test if ↵ | Giampaolo Rodola' | 2013-05-12 | 1 | -1/+2 | |
| | | | | it raises NotImplementedError | |||||
* | Remove "$Id$" occurrences from source code files. They were used by svn ↵ | Giampaolo Rodola' | 2013-03-26 | 1 | -3/+1 | |
| | | | | propset functionnality which no longer applies now that we're using Mercurial. | |||||
* | Fix issue 361: [Linux] psutil.cpu_times() now includes new 'steal', 'guest' ↵ | Giampaolo Rodola' | 2013-03-25 | 1 | -0/+21 | |
| | | | | and 'guest_nice' fields available on recent Linux kernels. Also, psutil.cpu_percent() is more accurate. | |||||
* | Issue 311: merge memory branch back to trunk | Giampaolo Rodola' | 2012-07-24 | 1 | -21/+51 | |
| | ||||||
* | fix issue #274: rewrite code in an idiom which works with both python 2.x ↵ | Giampaolo Rodola' | 2012-06-03 | 1 | -2/+3 | |
| | | | | and 3.x avoiding the 2to3 run at installation time | |||||
* | Fix issue 260: (Linux) process memory maps | Giampaolo Rodola' | 2012-04-26 | 1 | -1/+19 | |
| | ||||||
* | use from __future__ import division to reduce python 2/3 incompatibilies | Giampaolo Rodola' | 2012-01-20 | 1 | -0/+1 | |
| | ||||||
* | pycharm refactoring | Giampaolo Rodola' | 2012-01-04 | 1 | -2/+2 | |
| | ||||||
* | Fix #212 | Giampaolo Rodola' | 2011-10-05 | 1 | -0/+5 | |
| | | | | | Add license header in all source files to pass google chromium license checkers. Also removed Dave Daeschler from contributors and added some missing docstrings. | |||||
* | fix 192: failure in test_disk on linux | Giampaolo Rodola' | 2011-08-04 | 1 | -1/+1 | |
| | ||||||
* | add disk test using df on OSX | Giampaolo Rodola' | 2011-07-04 | 1 | -2/+2 | |
| | ||||||
* | adds disk test specific for Linux comparing psutil results with 'df' | Giampaolo Rodola' | 2011-07-02 | 1 | -4/+26 | |
| | ||||||
* | fix encoding problem on python 3 | Giampaolo Rodola' | 2010-10-19 | 1 | -0/+5 | |
| | ||||||
* | Issue 88: provide cached and buffers physical memory statistics on Linux, ↵ | Giampaolo Rodola' | 2010-09-23 | 1 | -8/+24 | |
| | | | | see http://code.google.com/p/psutil/issues/detail?id=88&colspec=ID%20Summary%20Type%20Opsys%20Status%20Milestone%20Opened%20Owner%20Progress#c26. | |||||
* | Removed all the crappy ^M line endings added when modifying files on Windows ↵ | Giampaolo Rodola' | 2010-06-17 | 1 | -24/+24 | |
| | | | | and replaced them with \n | |||||
* | provides a generic 'reap_children' function which automatically kill any ↵ | Giampaolo Rodola' | 2010-06-17 | 1 | -2/+2 | |
| | | | | subprocess started by the test suite, making sure no zombies stick around; from now on there's no need for us to keep a reference to the subprocess.Popen() object since every subprocess gets automatically cleaned up in tearDown | |||||
* | set svn propset id | Giampaolo Rodola' | 2010-05-13 | 1 | -1/+3 | |
| | ||||||
* | set svn propset id | Giampaolo Rodola' | 2010-05-13 | 1 | -0/+1 | |
| | ||||||
* | Removed groupname code. | Giampaolo Rodola' | 2010-02-17 | 1 | -5/+0 | |
| | ||||||
* | removed posix specific create_time test. gave a tollerance of 2 seconds ↵ | Giampaolo Rodola' | 2010-02-17 | 1 | -8/+0 | |
| | | | | instead of 1 to generic create_time test | |||||
* | moved groupname test grom _posix.py in _bsd.py and _linux.py as "ps" on OSX ↵ | Giampaolo Rodola' | 2010-02-02 | 1 | -0/+8 | |
| | | | | doesn't accept "-o rgroup" argument | |||||
* | moved test_create_time from _posix.py to _linux.py as it't linux specific | Giampaolo Rodola' | 2010-01-30 | 1 | -1/+22 | |
| | ||||||
* | renamed specific platform modules by using an underscore | Giampaolo Rodola' | 2010-01-28 | 1 | -0/+5 | |