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