aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-03-21 03:17:59 +0100
committerGitHub <noreply@github.com>2024-03-21 02:17:59 +0000
commit3ee39db34efd532626d710de6717bf3c6255c10e (patch)
tree678b0e7f536efd90ace0afa010c43264264c7e0b
parentd4cd988c187f277f5fdc22c9ce3923324805a304 (diff)
downloadgitea-3ee39db34efd532626d710de6717bf3c6255c10e.tar.gz
gitea-3ee39db34efd532626d710de6717bf3c6255c10e.zip
Exclude `routers/private/tests` from air (#29949)
Exclude this and reformat the toml option to multiline. I wasn't able to get `exclude_regex` to work so it would include a `tests` directory anywhere. I think that option only works on files.
-rw-r--r--.air.toml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.air.toml b/.air.toml
index d13f8c4f99..de97bd8b29 100644
--- a/.air.toml
+++ b/.air.toml
@@ -8,6 +8,15 @@ delay = 1000
include_ext = ["go", "tmpl"]
include_file = ["main.go"]
include_dir = ["cmd", "models", "modules", "options", "routers", "services"]
-exclude_dir = ["modules/git/tests", "services/gitdiff/testdata", "modules/avatar/testdata", "models/fixtures", "models/migrations/fixtures", "modules/migration/file_format_testdata", "modules/avatar/identicon/testdata"]
+exclude_dir = [
+ "models/fixtures",
+ "models/migrations/fixtures",
+ "modules/avatar/identicon/testdata",
+ "modules/avatar/testdata",
+ "modules/git/tests",
+ "modules/migration/file_format_testdata",
+ "routers/private/tests",
+ "services/gitdiff/testdata",
+]
exclude_regex = ["_test.go$", "_gen.go$"]
stop_on_error = true