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: _posts/2020-04-05-how-to-contribute-by-cpython-unittest.markdown
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Here's how you run a single unittest file:
23
23
` $ RUSTPYTHONPATH=Lib cargo run --release Lib/test/test_unicode.py`
24
24
25
25
##Add a new unittest file
26
-
Because CPython unittest doesn't workworkperfectly in RustPython, we are adding test files one by one. Here's how:
26
+
Because CPython unittest doesn't work perfectly in RustPython, we are adding test files one by one. Here's how:
27
27
1. Download the CPython source code with`git clone https://github.com/python/cpython.git`.
28
28
2. Check out a specific version of CPython. We test against CPython 3.8, so the most recent release of 3.8 ([currently 3.8.7](https://www.python.org/doc/versions/)) is recommended.