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
This repository contains Python scripts for use by Regional Nesting Suites to replace specific land surface fields in static input data.
3
+
## About
4
+
5
+
`replace_landsurface` is a `Python` utility to be used within ACCESS-NRI versions of the Regional Nesting Suites to replace specific land surface initial/boundary conditions.
6
+
7
+
8
+
## Development/Testing instructions
9
+
For development/testing, it is recommended to install `replace_landsurface` as a development package within a `micromamba`/`conda` testing environment.
### Install replace_landsurface as a development package
27
+
```
28
+
pip install --no-deps --no-build-isolation -e .
29
+
```
30
+
31
+
### Running the tests
32
+
33
+
The test suite currently includes only integration tests.
34
+
35
+
To manually run the tests, from the `replace_landsurface` directory, you can:
36
+
37
+
1. Activate your [micromamba/conda testing environment](#create-a-micromamba-conda-testing-environment)
38
+
2. Run the following command:
39
+
```
40
+
pytest -n 4
41
+
```
42
+
43
+
> [!TIP]
44
+
> The `-n 4` option is a [pytest-xdist](https://pytest-xdist.readthedocs.io/en/stable/) option to run the tests in parallel across 4 different workers.
45
+
46
+
> [!IMPORTANT]
47
+
> Integration tests are designed to be run on `Gadi`.
48
+
> If you run tests on a local machine, the integration tests will be skipped.
0 commit comments