We are currently running part of the CPython test suite. This is a good place for people new to the project to contribute. Contribution here can come in two ways:
- Fix failing test - Look for tests marked as skipped or xfail and fix RustPython so that the test will pass.
Add more tests suites - Copy test suite from CPython and mark failing tests with xfail or skip.
In order to run the test suite use cargo run -- -m test -v.
All tests are in Lib/test
Guide: https://rustpython.github.io/blog/2020/04/04/how-to-contribute-by-cpython-unittest.html
We are currently running part of the CPython test suite. This is a good place for people new to the project to contribute. Contribution here can come in two ways:
Add more tests suites - Copy test suite from CPython and mark failing tests with xfail or skip.In order to run the test suite use
cargo run -- -m test -v.All tests are in
Lib/testGuide: https://rustpython.github.io/blog/2020/04/04/how-to-contribute-by-cpython-unittest.html