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
- [`llvm-cov-pretty`](https://crates.io/crates/llvm-cov-pretty) is used only for the optional `nox -s pretty-cov` task. Without this installed, `nox -s llvm-cov` will suffice.
36
-
37
-
Use nox to run tests:
36
+
Use `nur` to run tests:
38
37
39
38
```sh
40
-
uv run nox -stest
39
+
nurtest
41
40
```
42
41
43
42
Different test profiles are still defined in .config/nextest.toml.
44
43
The above command uses the "default" profile, but to mimic the CI, use:
45
44
46
45
```sh
47
-
uv run nox -s test -- --profile ci
46
+
nur test --profile ci
48
47
```
49
48
50
49
To generate a coverage report:
51
50
52
51
```sh
53
-
uv run nox -s llvm-cov -- --open
52
+
nur testllvm-cov --open
54
53
```
55
54
56
-
The `-- --open`part is optional. It opens the built coverage report in your default browser.
55
+
The `--open`flag is optional. It opens the built coverage report in your default browser.
57
56
58
57
The uploaded codecov report is generated with
59
58
60
59
```sh
61
-
uv run nox -s lcov
60
+
nur test lcov
62
61
```
63
62
64
63
## Generating docs
65
64
66
65
To view the docs locally, use
67
66
68
67
```sh
69
-
uv run nox -s docs -- --open
68
+
nur docs --open
70
69
```
71
70
72
-
The `-- --open`part is optional. It opens the built docs in your default browser.
71
+
The `--open`flag is optional. It opens the built docs in your default browser.
0 commit comments