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
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,9 @@ assignees: ''
23
23
24
24
**Note**: As you can see, there are many issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates.
25
25
26
-
**Note**: Please be sure you are using the latest released version of `statsmodels`, or a recent build of `master`. If your problem has been fixed in an unreleased version, you might be able to use `master` until a new release occurs.
26
+
**Note**: Please be sure you are using the latest released version of `statsmodels`, or a recent build of `main`. If your problem has been fixed in an unreleased version, you might be able to use `main` until a new release occurs.
27
27
28
-
**Note**: If you are using a released version, have you verified that the bug exists in the master branch of this repository? It helps the limited resources if we know problems exist in the current master so that they do not need to check whether the code sample produces a bug in the next release.
28
+
**Note**: If you are using a released version, have you verified that the bug exists in the main branch of this repository? It helps the limited resources if we know problems exist in the current main branch so that they do not need to check whether the code sample produces a bug in the next release.
Copy file name to clipboardExpand all lines: docs/source/dev/test_notes.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ Tests can be run at different levels of granularity:
77
77
78
78
How To Write A Test
79
79
-------------------
80
-
NumPy provides a good introduction to unit testing with pytest and NumPy extensions `here <https://github.com/numpy/numpy/blob/master/doc/TESTS.rst.txt>`__. It is worth a read for some more details.
80
+
NumPy provides a good introduction to unit testing with pytest and NumPy extensions `here <https://github.com/numpy/numpy/blob/main/doc/TESTS.rst.txt>`__. It is worth a read for some more details.
81
81
Here, we will document a few conventions we follow that are worth mentioning. Often we want to test
82
82
a whole model at once rather than just one function, for example. The following is a pared down
83
83
version test_discrete.py. In this case, several different models with different options need to be
0 commit comments