|
1 | 1 | # Sciware Testing Examples and Exercises
|
2 | 2 |
|
3 |
| -[](https://github.com/flatironinstitute/sciware-testing-python/actions/workflows/test.yml/) |
| 3 | +[](https://github.com/flatironinstitute/sciware-testing-python/actions) |
4 | 4 |
|
5 | 5 | This is an example repository for writing tests, for the Sciware Testing session.
|
6 | 6 | It demonstrates how to setup a repository to use GitHub actions to automatically run tests
|
@@ -41,10 +41,11 @@ pytest
|
41 | 41 | * **[`requirements.txt`](requirements.txt)** - File listing the packages required to run the code. It is included by setup.py.
|
42 | 42 | * **[`LICENSE`](LICENSE)** - File containing the text of the license the code is released under. Having a license file allows other people to use the code.
|
43 | 43 | * **[`sciware_testing_python/`](sciware_testing_python/)** - Directory for all the code.
|
44 |
| -* **[`sciware_testing_python/__init.py__`** - File that python imports to define the `sciware_testing_python`](sciware_testing_python/__init.py__`** - File that python imports to define the `sciware_testing_python) package. |
45 |
| -* **[`sciware_testing_python/sciware_testing_python.py`](sciware_testing_python/sciware_testing_python.py)** - File with all of the code. |
| 44 | +* **[`sciware_testing_python/__init.py__`](sciware_testing_python/__init__.py)** - File that python imports to define the `sciware_testing_python package. |
| 45 | +* **[`sciware_testing_python/main.py`](sciware_testing_python/main.py)** - File with all of the code. |
46 | 46 | * **[`tests/`** - Directory for the code which tests the code in `sciware_testing_python`](tests/`** - Directory for the code which tests the code in `sciware_testing_python).
|
47 |
| -* **[`tests/test_sciware_testing_python.py`](tests/test_sciware_testing_python.py)** - File containing the tests. |
| 47 | +* **[`tests/test_1.py`](tests/test_1.py)** - File to fill in with some tests |
| 48 | +* **[`tests/test_examples.py`](tests/test_examples.py)** - File containing some tests |
48 | 49 | * **[`.gitignore`](.gitignore)** - File which tells github what files to not track (optional)
|
49 | 50 | * **[`.github/workflows/`](.github/workflows/)** - Directory containing the configuration file for GitHub actions.
|
50 | 51 | * **[`.github/workflows/test.yml`](.github/workflows/test.yml)** - File detailing the system configurations to use for the tests.
|
0 commit comments