├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── src ├── __main__.py ├── tester.py ├── tests.py └── utils.py /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | termcolor == 2.2.0 2 | -------------------------------------------------------------------------------- /src/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/src/__main__.py -------------------------------------------------------------------------------- /src/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/src/tester.py -------------------------------------------------------------------------------- /src/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/src/tests.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kichkiro/philosophers_tester/HEAD/src/utils.py --------------------------------------------------------------------------------