-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplified README, removed unneeded files
- Loading branch information
Showing
5 changed files
with
78 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#! /bin/bash | ||
echo "Running tests..." | ||
echo "#! /bin/bash \\n\ | ||
/workspace/Python-3.10.0/python -m secimport.cli" > /tmp/secimport && chmod +x /tmp/secimport | ||
export PATH=/tmp/:$PATH | ||
export alias secimport="/workspace/Python-3.10.0/python -m secimport.cli" | ||
cd /workspace | ||
/workspace/Python-3.10.0/python -m pip install coverage pytest && /workspace/Python-3.10.0/python -m coverage run -m pytest tests && /workspace/Python-3.10.0/python -m coverage report -m --skip-empty --omit=\"*/tests/*\" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# Contributing | ||
1. Fork this repo ^ | ||
2. Install `poetry`, `pre-commit`, `doctoc` (Run `python3 -m pip install poetry pre-commit doctoc`) | ||
3. Run `poetry install` | ||
3. Run `poetry install` and `pre-commit install` from the root directory of the project. | ||
4. Add your feature/bugfixes/changes (see [Roadmap](#roadmap) if your are looking for Ideas) | ||
5. Run ./scripts/lint to correct the code styling and lint using pre-commit hooks | ||
5. Run `./scripts/check.sh` to correct the code styling and lint using pre-commit hooks. | ||
1. run `git add .` if the script modified any files. | ||
2. commit the changes using `git commit ` | ||
6. Create a pull request with a desriptive title :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters