| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
Cleanup is now done BEFORE tests are run and takes care of resetting
the daemon state more thoroughly. The daemon will now always be
installed, logged in and disconnected with all settings reset before
the next test. Tests are therefore not able to depend on the previous
test leaving the test-runner in a certain state and must instead take
care of setting up their own state themselves.
`test_upgrade_app` gets special treatment to be able to run before
the new app version is automatically installed.
Refactor `run_tests.rs`
|
|
Co-authored-by: Markus Pettersson <markus.pettersson@mullvad.net>
|
|
This will not affect `ci-runtests.sh` as the log level is set to
`DEBUG` using the `RUST_LOG` env variable. Most debug logs are not
relevant when creating new integration and running them locally,
so this is a more sane default.
|
|
|
|
`err_derive` is unmaintained and will probably stop working with rust
edition 2024. `thiserror` is almost a drop-in replacement. This commit
simply replaces all occurences of `derive(err_derive::Error)` with
`derive(thiserror::Error)` and fixes the attributes, but the Error and
Display impls should be identical.
|
|
|
|
Co-authored-by: Jonathan <jonathan@mullvad.net>
Co-authored-by: Markus Pettersson <markus.pettersson@mullvad.net>
|