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
- Ensure the bug was not already reported by searching in [Issues](https://github.com/ACCLAB/DABEST-python/issues). Check that the bug hasn't been addressed in a closed issue.
6
+
7
+
- If the bug isn't being addressed, open a new issue using the Bug report template. Be sure to fill in the necessary information, and a [minimally reproducible code sample](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) demonstrating the expected behavior that is not occurring.
8
+
9
+
10
+
## Did you write a patch that fixes a bug?
11
+
- Open a new GitHub [pull request](https://help.github.com/en/articles/about-pull-requests) (PR for short) with the patch.
12
+
13
+
- Create the PR into the development branch, which is indicated by `v{latest version number}-dev`.
14
+
15
+
- Clearly state the problem and solution in the PR description. Include the relevant [issue number](https://guides.github.com/features/issues/) if applicable.
16
+
17
+
18
+
## Do you intend to add a new feature or change an existing one?
19
+
- Suggest your change by opening an issue using the Feature request template.
20
+
- If the maintainers and the community are in favour, create a fork and start writing code.
21
+
22
+
23
+
DABEST is a community tool for estimation statistics and analysis. We look forward to more robust and more elegant data visualizations from you all!
Copy file name to clipboardExpand all lines: nbs/01-getting_started.ipynb
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@
75
75
"Clone the [DABEST-python repo](https://github.com/ACCLAB/DABEST-python) locally (see instructions [here](https://help.github.com/articles/cloning-a-repository/)).\n",
76
76
"\n",
77
77
"Then, navigate to the cloned repo in the command line and run\n",
78
-
"```\n",
78
+
"``` shell\n",
79
79
"$ pip install .\n",
80
80
"```"
81
81
]
@@ -93,9 +93,13 @@
93
93
"id": "a9f8cb3e",
94
94
"metadata": {},
95
95
"source": [
96
-
"To test DABEST, you will need to install [pytest](https://docs.pytest.org/en/latest/). \n",
96
+
"To test DABEST, you will need to install [pytest](https://docs.pytest.org/en/latest/) and [nbdev](https://nbdev.fast.ai/). \n",
97
+
"\n",
98
+
"Run ``nbdev_export && nbdev_test`` in the root directory of the source distribution. This runs the value assertion tests in ``dabest/tests`` folder\n",
99
+
"\n",
100
+
"Run ``pytest`` in the root directory of the source distribution. This runs the image-based tests in ``dabest/tests/mpl_image_tests`` sub folder.\n",
97
101
"\n",
98
-
"Run ``pytest`` in the root directory of the source distribution. This runs the test suite in ``dabest/tests`` folder including also the image-based tests of the ``mpl_image_tests`` sub folder. The test suite will ensure that the bootstrapping functions and the plotting functions perform as expected.\n",
102
+
"The test suite will ensure that the bootstrapping functions and the plotting functions perform as expected.\n",
0 commit comments