Skip to content

Commit

Permalink
Merge branch 'main' into pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
  • Loading branch information
nsmith- authored Dec 21, 2023
2 parents fd72c76 + a362beb commit 660c8b8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ jobs:
- name: Install package
run: python -m pip install .[test]
- name: Test package
run: python -m pytest -ra
run: |
python -m pytest -vv tests --reruns 10 --reruns-delay 30 --only-rerun "(?i)OSError|timeout|expired|connection|socket"
- name: Run fsspec-xrootd tests from uproot latest release
run: |
Expand All @@ -74,7 +75,7 @@ jobs:
python -m pip install ./uproot[test]
# Install xrootd-fsspec again because it may have been overwritten by uproot
python -m pip install .[test]
python -m pytest -ra -k "xrootd" uproot/tests
python -m pytest -vv -k "xrootd" uproot/tests --reruns 10 --reruns-delay 30 --only-rerun "(?i)OSError|timeout|expired|connection|socket"
dist:
name: Distribution build
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ profile = "black"

[tool.pylint]
master.py-version = "3.7"
master.ignore-paths= ["src/fsspec_xrootd/_version.py"]
master.ignore-paths = ["src/fsspec_xrootd/_version.py"]
reports.output-format = "colorized"
similarities.ignore-imports = "yes"
messages_control.disable = [
"design",
"fixme",
"line-too-long",
"wrong-import-position",
"design",
"fixme",
"line-too-long",
"wrong-import-position",
]
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ docs =
sphinx-copybutton
test =
pytest>=6
pytest-rerunfailures
pytest-timeout

[flake8]
extend-ignore = E203, E501, E722, B950, B905
Expand Down

0 comments on commit 660c8b8

Please sign in to comment.