You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you get a bunch of errors during linking in the build process, set `LIBDIR` or `GOPY_LIBDIR` to path to python libraries, and `LIBRARY` or `GOPY_PYLIB` to name of python library (e.g., python39 for 3.9).
59
59
60
+
#### Running Tests on Windows
61
+
62
+
To run the test suite on Windows, you need to install `psutil` for memory tracking. This is required because Python's built-in `resource` module is [only available on Unix](https://docs.python.org/3/library/resource.html):
63
+
64
+
```sh
65
+
python -m pip install psutil
66
+
```
67
+
68
+
Without `psutil`, tests that check for memory leaks will fail with `ModuleNotFoundError`.
69
+
60
70
## Community
61
71
62
72
See the [CONTRIBUTING](https://github.com/go-python/gopy/blob/master/CONTRIBUTE.md) guide for pointers on how to contribute to `gopy`.
0 commit comments