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 might not be a bug. It might be that I just can't find the magic syntax.
cargo pgrx new foop
cd foop
cargo pgrx test
<snip>
test tests::pg_test_hello_foop ... ok
test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 22.65s
cargo pgrx test test_hello_foop
Error:
0: Postgres `test_hello_foop` is not managed by pgrx
cargo pgrx test hello_foop
Error:
0: Postgres `hello_foop` is not managed by pgrx
cargo pgrx test pg_test_hello_foop
Error:
0: Postgres `pg_test_hello_foop` is not managed by pgrx
cargo pgrx test tests::pg_test_hello_foop
Error:
0: Postgres `tests::pg_test_hello_foop` is not managed by pgrx
cargo pgrx test tests.test_hello_foop
Error:
0: Postgres `tests.test_hello_foop` is not managed by pgrx
I think this used to work, but I haven't tried it in a long time.
I'm using 0.12.1.
The text was updated successfully, but these errors were encountered:
If I get ambitious here, I'll fix the docs, and maybe default the pg version param, and maybe add some way of passing through switches to cargo test. Yesterday I found it very helpful to be able to add --test-threads 1. Anything else that needs doing while I'm in there?
This might not be a bug. It might be that I just can't find the magic syntax.
I think this used to work, but I haven't tried it in a long time.
I'm using 0.12.1.
The text was updated successfully, but these errors were encountered: