Skip to content

Commit 84a1fd2

Browse files
authored
Merge pull request #69 from viperior/feature/revise-readme-project-structure
Improve the project structure documentation
2 parents 63aeae6 + a4b6363 commit 84a1fd2

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
### Improvements
2020

2121
- Move the tests related to the example module into example/tests (closes [#36](https://github.com/viperior/python-project-template/issues/36))
22+
- Improve the project structure documentation
2223
- Rename the `build` workflow to `test` (closes [#52](https://github.com/viperior/python-project-template/issues/52))
2324
- Simplify the import statement in the coin flip test case
2425
- Ignore `.venv` directory when linting with flake8 (closes [#53](https://github.com/viperior/python-project-template/issues/53))

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,14 @@ python -m pytest
3838
## Project structure
3939

4040
``` text
41-
project_root
42-
├───games_of_chance
43-
└───tests
41+
mainpackage/
42+
subpackage/
43+
__init__.py
44+
samplemodule.py
45+
tests/
46+
__init__.py
47+
test_one.py
48+
test_two.py
4449
```
4550

4651
## Resources

0 commit comments

Comments
 (0)