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
* Add thin and progress kwargs to fitters
* Create test_package workflow (#4)
* Create test_package workflow
* Skip unit tests requiring mpi4py if not installed
* Add manual testing instructions to README
* Create CONTRIBUTING.md and move testing instructions here
* Link to contributing guidelines in docs
Thank you for your interest in contributing to this project. All questions and ideas for improvement are welcome and can be made through opening an issue or pull request.
4
+
5
+
Before contributing, familiarize yourself with our resources:
- Please remember to include a concise, self-contained unit test in your pull request. Ensure that all tests pass (see [Manual Testing](#manual-testing)).
24
+
- Open a [pull request](https://github.com/AlanPearl/diffopt/pulls).
25
+
26
+
## Manual Testing
27
+
28
+
Make sure you have installed diffopt as described in the [docs](https://diffopt.readthedocs.io/en/latest/installation.html). To run all tests from the main directory:
29
+
30
+
```bash
31
+
pip install pytest
32
+
pytest .
33
+
mpirun -n 2 pytest .
34
+
```
35
+
36
+
Note that unit tests requiring `mpi4py` installation are not automatically tested by GitHub workflows. Therefore, running these tests manually with `mpi4py` installed is necessary to assure that all tests pass.
0 commit comments