Skip to content

Commit

Permalink
Simplify .gitignore; allow local only archive test files
Browse files Browse the repository at this point in the history
  • Loading branch information
ml31415 committed Sep 27, 2023
1 parent f34a19f commit d6e082f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 44 deletions.
49 changes: 6 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,15 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# Exclude all .idea/ without exceptions
.idea/

# *.iml
# *.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

Expand All @@ -65,12 +32,6 @@ crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### macOS template
# General
.DS_Store
Expand Down Expand Up @@ -239,5 +200,7 @@ dmypy.json
# Cython debug symbols
cython_debug/

.idea/
*.ipynb

# Local only additional test files
tests/resources/data/*/*.bz2
2 changes: 1 addition & 1 deletion tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_responses(path):
}


@pytest.mark.parametrize("path", sorted((RESOURCES_DIR / "data").glob("*.bz2")), ids=id_from_path)
@pytest.mark.parametrize("path", sorted((RESOURCES_DIR / "data").glob("**/*.bz2")), ids=id_from_path)
def test_archive(path):
for i, line in enumerate(bz2.open(path), start=1):
res = stream_decode(line)
Expand Down

0 comments on commit d6e082f

Please sign in to comment.