diff options
author | Sviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua> | 2024-09-13 22:13:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 22:13:50 +0200 |
commit | 1b1975a93bc805eb63005d4d4d3501715c1c00c9 (patch) | |
tree | c29556a8e0db410caa86efa73d2306c5305a3d75 /.coveragerc | |
parent | 🧪 Unmeasure coverage in tests expected to fail (#15512) (diff) | |
download | awx-1b1975a93bc805eb63005d4d4d3501715c1c00c9.tar.xz awx-1b1975a93bc805eb63005d4d4d3501715c1c00c9.zip |
🧪💄 Order settings in `coveragerc` (#15515)
Diffstat (limited to '.coveragerc')
-rw-r--r-- | .coveragerc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.coveragerc b/.coveragerc index d06848ae15..28183950fd 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,10 +1,3 @@ -[run] -source = awx -branch = True -omit = - awx/main/migrations/* - awx/lib/site-packages/* - [report] # Regexes for lines to exclude from consideration exclude_lines = @@ -27,5 +20,12 @@ exclude_lines = ignore_errors = True +[run] +branch = True +omit = + awx/main/migrations/* + awx/lib/site-packages/* +source = awx + [xml] output = ./reports/coverage.xml |