summaryrefslogtreecommitdiff
path: root/tests/integration/main.rs
blob: 7ee422e32ab8caa85bc09563840a81b9db5437a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#![cfg(feature = "integration")]
#![allow(
    clippy::unwrap_used,
    clippy::indexing_slicing,
    clippy::expect_used,
    clippy::print_stderr
)]

mod git_helpers;
mod harness;
mod runtime;

mod auth;
mod cache;
mod cleanup;
mod cli_run;
mod cli_status;
mod concurrent;
mod deploy;
mod edge_cases;
mod env_vars;
mod health;
mod hooks;
mod logs;
mod not_found;
mod overrides;
mod packaging;
mod polling;
mod rate_limit;
mod secrets;
mod sighup;