Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 441 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (13 loc) · 441 Bytes

How to Contribute

Contributions and patches are always welcomed, following are some few things before submitting your contriibution.

Format

Format your code in following way: Use Black formatter

black -l 79 file_name.py

Tests

Complete all tests in tests folder by using following code:

ls tests/*.py|xargs -n 1 -P 3 python &> test.log &&echo "All passed" || echo "Failed! Search keyword FAILED in test.log"