README.rst (997B)
1 Test project for continuous integration and testing 2 =================================================== 3 4 Test project continuation lecture 14: adding CI and Python ``unittest`` and 5 ``pytest`` tests. 6 7 8 .. code:: console 9 10 . 11 ├── LICENSE 12 ├── pyproject.toml 13 ├── README.md 14 ├── src 15 │ └── cs107_package 16 │ ├── __init__.py 17 │ ├── __main__.py 18 │ ├── subpkg_1 19 │ │ ├── __init__.py 20 │ │ ├── module_1.py 21 │ │ └── module_2.py 22 │ └── subpkg_2 23 │ ├── __init__.py 24 │ ├── module_3.py 25 │ ├── module_4.py 26 │ └── module_5.py 27 └── tests 28 ├── run_coverage.sh 29 ├── run_tests.sh 30 └── subpkg_1 31 ├── test_module_1.py 32 └── test_module_2.py