Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
test_toml_files/ | H | 25-Apr-2025 | - | 134 | 94 | |
README.md | H A D | 25-Apr-2025 | 731 | 19 | 15 | |
__init__.py | H A D | 25-Apr-2025 | 1.1 KiB | 24 | 19 | |
meson_impl_unittest.py | H A D | 25-Apr-2025 | 3.2 KiB | 107 | 82 |
README.md
1# meson_to_hermetic_test: unit tests for meson_to_hermetic 2 3NOTE: This README assumes your terminal is located in the root directory: `mesa3d/` 4 5## Environment Setup 6IGNORE STEPS 1-3 if your venv has already been set up previously and your terminal is `source` to the venv. 71. Run: `cd meson_to_hermetic` 82. Run `./setup-venv.sh` 93. Run `source venv/bin/activate` 104. Navigate to `mesa3d/` directory. 11 12## Running Tests 13See official [py-unittest docs](https://docs.python.org/3/library/unittest.html#command-line-interface) for command line usage. 14Here are some example commands that can be ran: 15```bash 16# This will run all tests within meson_impl_unittest module 17python -m unittest meson_to_hermetic_test/meson_impl_unittest.py 18``` 19