Metadata-Version: 2.1
Name: stresst
Version: 0.0.2
Summary: Stress test your Python solutions!
Home-page: https://ryanchou.dev
Author: Ryan Chou
Author-email: 
License: MIT
Keywords: competitive-programming python problems testing
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# stresst

This is a package to help stress test your Python solutions to problems.

You should have your directory structured like this:

- Python solution
- Test Folder
	- 1.in
	- 1.out

All test cases should have a file ending with .in and a file ending with .out for input and output, respectively.

To test your solution on stdin/stdout, run this command.

stresst [SOLUTION FILE] [TEST FOLDER]

If you ever forget this command, simply type this into your terminal:
stresst --help

