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
4. Start working on a new issue or feature by first creating a new branch with a descriptive name::
73
+
74
+
git checkout -b <my-new-branch-name>
75
+
76
+
5. Write great code. Suggestion: write the tests you would like your code to satisfy before writing the code itself. This is known as test-driven development.
77
+
78
+
6. Run tests and fix as necessary until everything passes::
79
+
80
+
pytest -v
81
+
82
+
(for documentation, run ``make html`` in ``doc`` directory)
83
+
84
+
7. Commit changes::
85
+
86
+
git add <changed files>
87
+
git commit -m "commit message"
88
+
89
+
8. Update & sync your local code to the upstream version on Github before submitting (especially if it has been awhile)::
0 commit comments