Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[flake8]
exclude=
elasticapm/utils/wrapt/**,
build/**,
src/**,
tests/**,
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pip-log.txt
/docs/doctrees
/example_project/*.db
tests/.schemacache
elasticapm/utils/wrapt/_wrappers*.so
coverage
.tox
.eggs
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ exclude = '''
| _build
| build
| dist
| elasticapm/utils/wrapt

# The following are specific to Black, you probably don't want those.
| blib2to3
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/license_headers_check.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
if [[ $# -eq 0 ]]
then
FILES=$(find . -iname "*.py" -not -path "./elasticapm/utils/wrapt/*" -not -path "./dist/*" -not -path "./build/*" -not -path "./tests/utils/stacks/linenos.py")
FILES=$(find . -iname "*.py" -not -path "./dist/*" -not -path "./build/*" -not -path "./tests/utils/stacks/linenos.py")
else
FILES=$@
fi
Expand Down