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
{{ message }}
This repository was archived by the owner on Apr 29, 2024. It is now read-only.
`nix flake check` gets its results cached, so if you do it again the tests won't rerun. If you change a file then it will run again.
31
+
32
+
If you want to force rerun without modifying a file, you can do:
33
+
34
+
```
35
+
nix build .#checks.x86_64-linux.psql_14 --rebuild
36
+
nix build .#checks.x86_64-linux.psql_15 --rebuild
37
+
```
38
+
39
+
Limitation: currently there's no way to rerun all the tests, so you have to specify the check attribute.
40
+
41
+
To get the correct attribute (`#checks.x86_64-linux.psql_15` above), you can do `nix flake show`. This will show a tree with all the output attributes.
42
+
26
43
## Migration tests
27
44
28
45
> **NOTE**: Currently, migration tests _do not happen in CI_. They can only be
0 commit comments