You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the CMake build command is run, the compiled library will be copied
62
-
into place where needed to build the Python package (alongside `__init__.py`).
72
+
When the CMake build command is run, the compiled library will be automatically
73
+
be copied into place where needed to build the Python package (alongside `__init__.py`).
63
74
64
75
1. Install the local package, and development dependencies:
65
76
@@ -71,21 +82,36 @@ Python wrapper.
71
82
This will install the Python package itself along with development dependencies
72
83
for pre-commit hooks, building distributable packages, and running unit tests.
73
84
74
-
1. (Optional) Run unit tests to confirm successfull installation. Test data is
75
-
used from the parent repository.
85
+
### Running Tests ###
76
86
77
-
```cmd
78
-
pytest .
79
-
```
87
+
Python unit tests can be run to confirm successfull installation. Test data is
88
+
expected to be located in the parent repository. Therefore, if you haven't cloned
89
+
this repository as a submodule (as described above), you will need to first specify
90
+
the location of the test data files in `tests/test_p2108.py` (using the `TEST_DATA_DIR`
91
+
variable). Then, run the tests with pytest:
92
+
93
+
```cmd
94
+
pytest .
95
+
```
80
96
81
-
## License
97
+
Additionally, the [Study Group Clutter Excel Workbook](https://www.itu.int/en/ITU-R/study-groups/rsg3/ionotropospheric/Clutter%20and%20BEL%20workbook_V2.xlsx)
98
+
contains an extensive set of example values which are useful as validation cases.
99
+
100
+
## License ##
82
101
83
102
See [LICENSE](LICENSE.md).
84
103
85
104
"Python" and the Python logos are trademarks or registered trademarks of the Python
86
105
Software Foundation, used by the National Telecommunications and Information Administration
0 commit comments