Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 86f9a98

Browse filesBrowse files
authored
Merge pull request #20 from Emaasit/docs
write tests using pytest
2 parents 2f3987e + af9875c commit 86f9a98
Copy full SHA for 86f9a98

File tree

Expand file treeCollapse file tree

2 files changed

+20
-15
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+20
-15
lines changed

‎CONTRIBUTING.rst

Copy file name to clipboardExpand all lines: CONTRIBUTING.rst
+13-7Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
Thank you for considering contributing to ``pymc-learn``! This project is intended to be a space where anyone can share models they've built.
2-
3-
Please read these guidelines before submitting anything to the project. As of the first release, I'm the only person working on this project so respecting these guidelines will help me get back to you more quickly.
1+
Thank you for considering contributing to ``pymc-learn``! Please read these
2+
guidelines before submitting anything to the project.
43

54
Some ways to contribute:
65

@@ -62,7 +61,7 @@ in case there have been any changes:
6261
git fetch upstream
6362
git rebase upstream/master
6463
65-
Then push the changes to your Gitlab account with:
64+
Then push the changes to your Github account with:
6665

6766
.. code-block:: bash
6867
@@ -75,8 +74,8 @@ Pull Request Checklist
7574
................................
7675

7776
- Ensure your code has followed the Style Guidelines below
78-
- Make sure you have written unittests where appropriate
79-
- Make sure the unittests pass
77+
- Make sure you have written tests where appropriate
78+
- Make sure the tests pass
8079

8180
.. code-block:: bash
8281
@@ -104,11 +103,18 @@ For the most part, this library follows PEP8 with a couple of exceptions.
104103
Notes:
105104

106105
- Indent with 4 spaces
107-
- Lines should be a maximum of 80 characters long
106+
- Lines can be 80 characters long
108107
- Docstrings should be written as numpy docstrings
109108
- Your code should be Python 3 compatible
110109
- When in doubt, follow the style of the existing code
111110

111+
Contact
112+
.............
113+
114+
To report an issue with ``pymc-learn`` please use the `issue tracker <https://github.com/pymc-learn/pymc-learn/issues>`__.
115+
116+
Finally, if you need to get in touch for information about the project, `send us an e-mail <devs@pymc-learn.org>`__.
117+
112118
Transitioning from PyMC3 to PyMC4
113119
-----------------------------------
114120

‎docs/develop.rst

Copy file name to clipboardExpand all lines: docs/develop.rst
+7-8Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
Contributing
22
=============
33

4-
Thank you for considering contributing to ``pymc-learn``! This project is intended to be a space where anyone can share models they've built.
5-
6-
Please read these guidelines before submitting anything to the project. As of the first release, I'm the only person working on this project so respecting these guidelines will help me get back to you more quickly.
4+
Thank you for considering contributing to ``pymc-learn``! Please read these
5+
guidelines before submitting anything to the project.
76

87
Some ways to contribute:
98

@@ -65,7 +64,7 @@ in case there have been any changes:
6564
git fetch upstream
6665
git rebase upstream/master
6766
68-
Then push the changes to your Gitlab account with:
67+
Then push the changes to your Github account with:
6968

7069
.. code-block:: bash
7170
@@ -78,13 +77,13 @@ Pull Request Checklist
7877
................................
7978

8079
- Ensure your code has followed the Style Guidelines below
81-
- Make sure you have written unittests where appropriate
82-
- Make sure the unittests pass
80+
- Make sure you have written tests where appropriate
81+
- Make sure the tests pass
8382

8483
.. code-block:: bash
8584
8685
conda activate myenv
87-
python -m unittest discover -cv
86+
python -m pytest
8887
8988
NOTE: On Windows, in your Anaconda Prompt, run ``activate myenv``.
9089

@@ -107,7 +106,7 @@ For the most part, this library follows PEP8 with a couple of exceptions.
107106
Notes:
108107

109108
- Indent with 4 spaces
110-
- Lines can be 120 characters long
109+
- Lines can be 80 characters long
111110
- Docstrings should be written as numpy docstrings
112111
- Your code should be Python 3 compatible
113112
- When in doubt, follow the style of the existing code

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.