Skip to content

Commit

Permalink
Add setup.cfg for pytest configuration
Browse files Browse the repository at this point in the history
b/143376431

Change-Id: Ia0f29c82b7a711bb700de5a8c053b62ee6f43caa
  • Loading branch information
andrewsavage1 committed Mar 22, 2022
1 parent 8ca54e8 commit 2575493
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
.idea
/venv/*
_certs/
.coverage
28 changes: 28 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[metadata]
name = cobalt

[tool:pytest]
norecursedirs=
.*
build
buildtools
cobalt/bindings
cobalt/black_box_tests/tests
cobalt/media_integration_tests
cobalt/tools
out
starboard/sabi
testing/android
testing/gtest
testing/gmock
third_party
tools/gyp
tools/idl_parser
tools/lbshell/coverage

# Ignore non-test files with test_* names that pytest would otherwise pick up.
addopts=
--ignore-glob=**/test_filters.py
--ignore-glob=**/test_filter.py
--ignore-glob=**/test_runner.py
--ignore-glob=**/test_env.py

0 comments on commit 2575493

Please sign in to comment.