Almost all swh modules use a pretty outdated black version (19.10b0).
The first stable release of black is available since a couple of weeks so we should bump black version
in .pre-commit.yaml and tox.ini files to use it.
Based on the discussion following swh-auth!27 (closed), I came up with the following script to execute in swh-environment in order to :
upgrade black in all swh repos and use flake8-bugbear for the line length warnings
reformat Python code with latest black version
add .git-blame-ignore-revs file to ignore reformatting commits
run flake8 after all these changes to check everything is OK
#!/bin/bash# Ensure current branch of each repo is the master onemr run git resetmr run git checkout .mr run git checkout master# Update reposmr update# Reset master branch to each repo to origin/mastermr run git reset --hard origin/mastermr run git clean -df# Update pre-commit and tox configuration by bumping black and adapt flake8 configuration# by adding use of flake8-bugbear extensionmr run sed -i s/19.10b0/22.3.0/ .pre-commit-config.yaml tox.inimr run sed -i "/# E231: missing whitespace after ','/a # E501: line too long, use B950 warning from flake8-bugbear instead" setup.cfgmr run sed -i "s/ignore = E203,E231,W503/ignore = E203,E231,E501,W503/" setup.cfgmr run sed -i "/ignore = E203,E231,E501,W503/i select = C,E,F,W,B950" setup.cfgmr run sed -i "/ - id: flake8/a \ \ \ \ \ \ \ \ additional_dependencies: [flake8-bugbear==22.3.23]" .pre-commit-config.yamlmr run sed -i "s/^ flake8/ flake8==4.0.1/" tox.inimr run sed -i "/^ flake8==4.0.1/a \ \ flake8-bugbear==22.3.23" tox.ini# Commit updated filesmr run git add .mr run git commit -m "pre-commit, tox: Bump black from 19.10b0 to 22.3.0black is considered stable since release 22.1.0 and the versionwe are currently using is quite outdated and not compatible withclick 8.1.0, so it is time to bump it to its latest stable release.Please note that E501 pycodestyle warning related to line lengthis replaced by B950 one from flake8-bugbear as recommended by black.https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-lengthRelated to #3922"# Below is the diff of the commit above:## diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml# index a89ac68..909d039 100644# --- a/.pre-commit-config.yaml# +++ b/.pre-commit-config.yaml# @@ -11,6 +11,7 @@ repos:# rev: 4.0.1# hooks:# - id: flake8# + additional_dependencies: [flake8-bugbear==22.3.23]# # - repo: https://github.com/codespell-project/codespell# rev: v2.1.0# @@ -38,6 +39,6 @@ repos:# - id: isort# # - repo: https://github.com/python/black# - rev: 19.10b0# + rev: 22.3.0# hooks:# - id: black# diff --git a/setup.cfg b/setup.cfg# index 7bf85d1..5b26483 100644# --- a/setup.cfg# +++ b/setup.cfg# @@ -1,7 +1,9 @@# [flake8]# E203: whitespaces before ':' <https://github.com/psf/black/issues/315># E231: missing whitespace after ','# +# E501: line too long, use B950 warning from flake8-bugbear instead# W503: line break before binary operator <https://github.com/psf/black/issues/52># -ignore = E203,E231,W503# +select = C,E,F,W,B950# +ignore = E203,E231,E501,W503# max-line-length = 88# extend-exclude = winery-test-environment/context,winery-test-environment/mitogen-strategy# diff --git a/tox.ini b/tox.ini# index 8e06ba8..1e7aa8f 100644# --- a/tox.ini# +++ b/tox.ini# @@ -21,14 +21,15 @@ commands =# [testenv:black]# skip_install = true# deps =# - black==19.10b0# + black==22.3.0# commands =# {envpython} -m black --check swh# # [testenv:flake8]# skip_install = true# deps =# - flake8# + flake8==4.0.1# + flake8-bugbear==22.3.23# commands =# {envpython} -m flake8# Replace reference of pycodestyle E501 warning (line length) by B950 one from flake8-bugbearmr run bash -c "find . -not -path '*/.*' -name '*.py' | xargs sed -i s/E501/B950/g"# Reformat python code with black 22.3.0mr run pre-commit run -a black# Commit updated filesmr run git add .mr run git commit -n -m "python: Reformat code with black 22.3.0Related to #3922"# Add .git-blame-ignore-revs file to ignore reformatting commitsmr run bash -c "git log --reverse --grep 'black formatting' --grep 'Enable black' --grep 'Reformat code' --pretty=format:'# %s%n%H%n' > .git-blame-ignore-revs"mr run git add .git-blame-ignore-revsmr run git commit -m "Add .git-blame-ignore-revs file with automatic reformatting commits"# Check flake8 execution after the changesmr run pre-commit run -a flake8
When executing that script, we have the following output:
mr run: /home/anlambert/swh/swh-environment/snippetsmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientUnstaged changes after reset:M .pre-commit-config.yamlM setup.cfgM tox.inimr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-authUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-coreUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-countersUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-datasetUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-depositUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-docsUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-fuseUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-graphUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-indexerUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-journalUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-listerUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-loader-bzrUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-loader-coreUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-loader-cvsUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-loader-gitUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-loader-svnUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-modelUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-objstorageUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayerUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-perfecthashUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-py-templateUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-scannerUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-schedulerUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-scrubberUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-searchUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-storageUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-vaultUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-webUpdated 0 paths from the indexmr run: /home/anlambert/swh/swh-environment/swh-web-clientUpdated 3 paths from the indexmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsAlready on 'master'Your branch is up to date with 'origin/master'.mr run: /home/anlambert/swh/swh-environment/swh-authAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-coreAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-countersAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-datasetAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-depositAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-docsAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-fuseAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-graphAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-indexerAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-journalAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-listerAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-loader-bzrAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-loader-coreAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-loader-cvsAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-loader-gitAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-loader-svnAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-modelAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-objstorageAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayerAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-perfecthashAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-py-templateAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-scannerAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-schedulerAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-scrubberAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-searchAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-storageAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-vaultAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-webAlready on 'master'Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)mr run: /home/anlambert/swh/swh-environment/swh-web-clientAlready on 'master'Your branch is up to date with 'origin/master'.mr run: finished (32 ok)mr update: /home/anlambert/swh/swh-environment/snippetsAlready up to date.mr update: /home/anlambert/swh/swh-environment/swh-authCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-coreCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-countersCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-datasetCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-depositCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-docsCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-fuseCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-graphCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-icinga-pluginsCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-indexerCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-journalCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-listerCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-loader-bzrCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-loader-coreCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-loader-cvsCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-loader-gitCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-loader-mercurialCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-loader-svnCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-modelCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-objstorageCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-objstorage-replayerCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-perfecthashCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-py-templateCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-scannerCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-schedulerCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-scrubberCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-searchCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-storageCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-vaultCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-webCurrent branch master is up to date.mr update: /home/anlambert/swh/swh-environment/swh-web-clientAlready up to date.mr update: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsHEAD is now at fa9e387 recheck_consistency: Remove useless codemr run: /home/anlambert/swh/swh-environment/swh-authHEAD is now at 4083f79 requirements-test: Temporarily pin django-stubs to < 1.10.0mr run: /home/anlambert/swh/swh-environment/swh-coreHEAD is now at 2a26153 Make db_transaction's client_options configurable at run timemr run: /home/anlambert/swh/swh-environment/swh-countersHEAD is now at 57f4f4c pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-datasetHEAD is now at a1dd918 Docs: update dataset list with recent datasetsmr run: /home/anlambert/swh/swh-environment/swh-depositHEAD is now at bb5c6b55 checks: Add type annotation to extra_validatormr run: /home/anlambert/swh/swh-environment/swh-docsHEAD is now at 9453394 Update the debian local package building sectionmr run: /home/anlambert/swh/swh-environment/swh-fuseHEAD is now at 8885586 docs/cli: Align and fix cli documentationmr run: /home/anlambert/swh/swh-environment/swh-graphHEAD is now at 6788bc2 config: add max value for batch_sizemr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsHEAD is now at b19b0cb pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-indexerHEAD is now at 620e3a0 pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-journalHEAD is now at 3771edb test_client: Fix failing test since recent swh-model updatemr run: /home/anlambert/swh/swh-environment/swh-listerHEAD is now at fea6fc0 lister: Add new rust crates listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrHEAD is now at e043b30 tests: Fix failing test since recent swh-model updatemr run: /home/anlambert/swh/swh-environment/swh-loader-coreHEAD is now at 4409e4b pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-loader-cvsHEAD is now at ecb447a pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-loader-gitHEAD is now at 96987c2 pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialHEAD is now at 193aaa2 pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-loader-svnHEAD is now at 6c83c50 Add svn_retry decorator to mitigate possible network errorsmr run: /home/anlambert/swh/swh-environment/swh-modelHEAD is now at ba7af74 model/cli: Format click docstringmr run: /home/anlambert/swh/swh-environment/swh-objstorageHEAD is now at 81d4765 pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayerHEAD is now at 37535c3 pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-perfecthashHEAD is now at 1e4e63a pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-py-templateHEAD is now at b8e227f pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-scannerHEAD is now at 2395537 pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-schedulerHEAD is now at 78f5579 pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-scrubberHEAD is now at 21ee7e2 Add OriginLocator, to list candidate origins to recover objects frommr run: /home/anlambert/swh/swh-environment/swh-searchHEAD is now at 61846a8 Move large constants to the toplevelmr run: /home/anlambert/swh/swh-environment/swh-storageHEAD is now at c6dc5cd3 Make postgresql's Storage client options configurable from configmr run: /home/anlambert/swh/swh-environment/swh-vaultHEAD is now at 295174c pytest: Exclude build directory for tests discoverymr run: /home/anlambert/swh/swh-environment/swh-webHEAD is now at 8126ea65 package.json: Upgrade dependenciesmr run: /home/anlambert/swh/swh-environment/swh-web-clientHEAD is now at 5f4e923 pytest: Exclude build directory for tests discoverymr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-authRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-coreRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-countersRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-datasetRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-depositRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-docsRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-fuseRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-graphRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-indexerRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-journalRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-listerRemoving .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetssed: can't read .pre-commit-config.yaml: No such file or directorysed: can't read tox.ini: No such file or directorymr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetssed: can't read setup.cfg: No such file or directorymr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetssed: can't read setup.cfg: No such file or directorymr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetssed: can't read setup.cfg: No such file or directorymr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetssed: can't read .pre-commit-config.yaml: No such file or directorymr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetssed: can't read tox.ini: No such file or directorymr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetssed: can't read tox.ini: No such file or directorymr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetsmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsOn branch masterYour branch is up to date with 'origin/master'.nothing to commit, working tree cleanmr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 814c5f6] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-coretrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master ed672be] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-counterstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 262763b] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-datasettrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master b573802] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-deposittrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 6fa56eae] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-docstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master bb1788c] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-fusetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master f01d6c7] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-graphtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedjava style...............................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedjava style...............................................................Passed[master ea85849] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 79996d7] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-indexertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master af32cd3] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-journaltrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master eccd8b0] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-listertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master f575318] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-bzrtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 8591d42] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-coretrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 1278aa1] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-cvstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master c988865] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-gittrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master ee7289e] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 212add8] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-svntrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 39edb2e] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-modeltrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 7ed818f] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-objstoragetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 1082360] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 02c6ebd] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-perfecthashtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 685df11] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-py-templatetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master d7b014d] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-scannertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master c062909] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-schedulertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 76f90a6] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-scrubberTrim Trailing Whitespace.................................................PassedCheck JSON...........................................(no files to check)SkippedCheck Yaml...............................................................Passedflake8...............................................(no files to check)Skippedcodespell................................................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master e4a650f] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 7 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-searchtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 40c4b55] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-storagetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedcheck-bumped-dbversion...............................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedcheck-bumped-dbversion...............................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master dbcf04c7] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-vaulttrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 7c01561] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-webtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedeslint...............................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedeslint...............................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master bbb688e3] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-web-clienttrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...............................................................Passedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master e6d7b52] pre-commit, tox: Bump black from 19.10b0 to 22.3.0 3 files changed, 8 insertions(+), 4 deletions(-)mr run: finished (31 ok; 1 failed)mr run: /home/anlambert/swh/swh-environment/snippetsmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsAn error has occurred: InvalidConfigError: =====> .pre-commit-config.yaml is not a fileCheck the log at /home/anlambert/.cache/pre-commit/pre-commit.logmr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/auth/tests/django/app/apptest/settings.pyreformatted swh/auth/keycloak.pyreformatted swh/auth/tests/django/test_utils.pyreformatted swh/auth/tests/test_keycloak.pyreformatted swh/auth/pytest_plugin.pyAll done! ✨ 🍰 ✨5 files reformatted, 30 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-coreblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/core/api/classes.pyreformatted swh/core/api/tests/server_testing.pyreformatted swh/core/api/tests/test_gunicorn.pyreformatted swh/core/api/asynchronous.pyreformatted swh/core/api/tests/test_rpc_server.pyreformatted swh/core/api/tests/test_rpc_client.pyreformatted swh/core/api/serializers.pyreformatted swh/core/api/tests/test_serializers.pyreformatted swh/core/cli/__init__.pyreformatted swh/core/cli/db.pyreformatted swh/core/db/tests/pytest_plugin/test_pytest_plugin.pyreformatted swh/core/config.pyreformatted swh/core/api/__init__.pyreformatted swh/core/db/tests/test_db_utils.pyreformatted swh/core/tests/fixture/test_pytest_plugin.pyreformatted swh/core/db/pytest_plugin.pyreformatted swh/core/db/tests/test_cli.pyreformatted swh/core/tarball.pyreformatted swh/core/pytest_plugin.pyreformatted swh/core/db/db_utils.pyreformatted swh/core/tests/test_pytest_plugin.pyreformatted swh/core/tests/test_cli.pyreformatted swh/core/statsd.pyreformatted swh/core/utils.pyreformatted swh/core/db/tests/test_db.pyreformatted swh/core/tests/test_tarball.pyreformatted swh/core/tests/test_config.pyAll done! ✨ 🍰 ✨27 files reformatted, 30 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-countersblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/counters/journal_client.pyreformatted swh/counters/in_memory.pyreformatted swh/counters/redis.pyreformatted swh/counters/interface.pyreformatted swh/counters/cli.pyreformatted swh/counters/history.pyreformatted swh/counters/api/server.pyreformatted swh/counters/tests/test_cli.pyreformatted swh/counters/tests/test_journal_client.pyreformatted swh/counters/tests/test_history.pyreformatted swh/counters/tests/test_server.pyAll done! ✨ 🍰 ✨11 files reformatted, 12 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-datasetblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/dataset/utils.pyreformatted swh/dataset/cli.pyreformatted swh/dataset/exporters/edges.pyreformatted swh/dataset/athena.pyreformatted swh/dataset/test/test_orc.pyreformatted swh/dataset/exporters/orc.pyreformatted swh/dataset/journalprocessor.pyreformatted swh/dataset/test/test_edges.pyAll done! ✨ 🍰 ✨8 files reformatted, 10 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-depositblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/deposit/api/private/__init__.pyreformatted swh/deposit/api/edit.pyreformatted swh/deposit/api/collection.pyreformatted swh/deposit/api/edit_media.pyreformatted swh/deposit/api/utils.pyreformatted swh/deposit/cli/__init__.pyreformatted swh/deposit/api/sword_edit.pyreformatted swh/deposit/api/checks.pyreformatted swh/deposit/api/private/deposit_check.pyreformatted swh/deposit/auth.pyreformatted swh/deposit/api/private/deposit_read.pyreformatted swh/deposit/exception.pyreformatted swh/deposit/config.pyreformatted swh/deposit/migrations/0003_temporaryarchive.pyreformatted swh/deposit/migrations/0004_delete_temporaryarchive.pyreformatted swh/deposit/migrations/0007_auto_20171129_1609.pyreformatted swh/deposit/migrations/0010_auto_20180110_0953.pyreformatted swh/deposit/cli/admin.pyreformatted swh/deposit/errors.pyreformatted swh/deposit/migrations/0019_auto_20200519_1035.pyreformatted swh/deposit/migrations/0020_auto_20200929_0855.pyreformatted swh/deposit/migrations/0015_depositrequest_typemigration.pyreformatted swh/deposit/migrations/0021_deposit_origin_url_20201124_1438.pyreformatted swh/deposit/migrations/0022_auto_20220223_1542.pyreformatted swh/deposit/settings/common.pyreformatted swh/deposit/parsers.pyreformatted swh/deposit/migrations/0001_initial.pyreformatted swh/deposit/settings/development.pyreformatted swh/deposit/settings/testing.pyreformatted swh/deposit/tests/api/test_basic_auth.pyreformatted swh/deposit/tests/api/conftest.pyreformatted swh/deposit/cli/client.pyreformatted swh/deposit/tests/api/test_collection.pyreformatted swh/deposit/migrations/0018_migrate_swhids.pyreformatted swh/deposit/models.pyreformatted swh/deposit/tests/api/test_collection_add_to_origin.pyreformatted swh/deposit/tests/api/test_collection_list.pyreformatted swh/deposit/tests/api/test_checks.pyreformatted swh/deposit/tests/api/test_collection_reuse_slug.pyreformatted swh/deposit/tests/api/test_delete.pyreformatted swh/deposit/tests/api/test_collection_post_binary.pyreformatted swh/deposit/api/common.pyreformatted swh/deposit/tests/api/test_converters.pyreformatted swh/deposit/tests/api/test_collection_post_multipart.pyreformatted swh/deposit/tests/api/test_deposit_private_read_archive.pyreformatted swh/deposit/tests/api/test_deposit_private_list.pyreformatted swh/deposit/tests/api/test_deposit_private_update_status.pyreformatted swh/deposit/client.pyreformatted swh/deposit/tests/api/test_deposit_schedule.pyreformatted swh/deposit/tests/api/test_deposit_update.pyreformatted swh/deposit/tests/api/test_exception.pyreformatted swh/deposit/tests/api/test_deposit_state.pyreformatted swh/deposit/tests/api/test_get_file.pyreformatted swh/deposit/tests/api/test_keycloak_auth.pyreformatted swh/deposit/tests/api/test_service_document.pyreformatted swh/deposit/tests/api/test_deposit_private_check.pyreformatted swh/deposit/tests/cli/test_admin.pyreformatted swh/deposit/tests/common.pyreformatted swh/deposit/tests/loader/test_checker.pyreformatted swh/deposit/tests/api/test_deposit_update_binary.pyreformatted swh/deposit/tests/loader/common.pyreformatted swh/deposit/tests/loader/test_tasks.pyreformatted swh/deposit/tests/api/test_deposit_private_read_metadata.pyreformatted swh/deposit/tests/test_backend.pyreformatted swh/deposit/tests/loader/test_client.pyreformatted swh/deposit/tests/api/test_collection_post_atom.pyreformatted swh/deposit/tests/api/test_deposit_update_atom.pyreformatted swh/deposit/tests/test_gunicorn_config.pyreformatted swh/deposit/tests/test_client_module.pyreformatted swh/deposit/tests/conftest.pyreformatted swh/deposit/tests/test_migrations.pyreformatted swh/deposit/utils.pyreformatted swh/deposit/tests/test_utils.pyreformatted swh/deposit/tests/cli/test_client.pyAll done! ✨ 🍰 ✨74 files reformatted, 48 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-docsblack....................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-fuseblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/fuse/fs/entry.pyreformatted swh/fuse/tests/conftest.pyreformatted swh/fuse/tests/data/config.pyreformatted swh/fuse/cli.pyreformatted swh/fuse/tests/test_cli.pyreformatted swh/fuse/fs/mountpoint.pyreformatted swh/fuse/fuse.pyreformatted swh/fuse/cache.pyreformatted swh/fuse/fs/artifact.pyAll done! ✨ 🍰 ✨9 files reformatted, 19 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-graphblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/graph/config.pyreformatted tools/dir2graphreformatted swh/graph/server/app.pyreformatted swh/graph/cli.pyreformatted swh/graph/tests/test_api_client.pyreformatted swh/graph/naive_client.pyreformatted swh/graph/tests/dataset/generate_dataset.pyAll done! ✨ 🍰 ✨7 files reformatted, 14 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/icinga_plugins/tests/web_scenario.pyreformatted swh/icinga_plugins/cli.pyreformatted swh/icinga_plugins/tests/test_save_code_now.pyreformatted swh/icinga_plugins/deposit.pyreformatted swh/icinga_plugins/tests/test_vault.pyreformatted swh/icinga_plugins/tests/test_deposit.pyAll done! ✨ 🍰 ✨6 files reformatted, 10 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-indexerblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/indexer/fossology_license.pyreformatted swh/indexer/ctags.pyreformatted swh/indexer/mimetype.pyreformatted swh/indexer/origin_head.pyreformatted swh/indexer/storage/api/server.pyreformatted swh/indexer/storage/converters.pyreformatted swh/indexer/rehash.pyreformatted swh/indexer/storage/metrics.pyreformatted swh/indexer/metadata.pyreformatted swh/indexer/cli.pyreformatted swh/indexer/storage/interface.pyreformatted swh/indexer/tests/conftest.pyreformatted swh/indexer/tests/storage/test_api_client.pyreformatted swh/indexer/tests/storage/test_in_memory.pyreformatted swh/indexer/tests/storage/conftest.pyreformatted swh/indexer/indexer.pyreformatted swh/indexer/tests/storage/test_metrics.pyreformatted swh/indexer/tests/storage/test_server.pyreformatted swh/indexer/tests/tasks.pyreformatted swh/indexer/storage/db.pyreformatted swh/indexer/tests/storage/test_converters.pyreformatted swh/indexer/storage/in_memory.pyreformatted swh/indexer/tests/storage/generate_data_test.pyreformatted swh/indexer/tests/test_indexer.pyreformatted swh/indexer/tests/test_ctags.pyreformatted swh/indexer/tests/test_fossology_license.pyreformatted swh/indexer/tests/test_codemeta.pyreformatted swh/indexer/tests/test_journal_client.pyreformatted swh/indexer/tests/test_tasks.pyreformatted swh/indexer/storage/__init__.pyreformatted swh/indexer/tests/test_origin_head.pyreformatted swh/indexer/tests/test_cli.pyreformatted swh/indexer/tests/test_origin_metadata.pyreformatted swh/indexer/tests/utils.pyreformatted swh/indexer/tests/test_metadata.pyreformatted swh/indexer/tests/storage/test_storage.pyAll done! ✨ 🍰 ✨36 files reformatted, 28 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-journalblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/journal/tests/test_stream.pyreformatted swh/journal/tests/test_pytest_plugin.pyreformatted swh/journal/tests/test_serializers.pyreformatted swh/journal/pytest_plugin.pyreformatted swh/journal/client.pyreformatted swh/journal/writer/kafka.pyreformatted swh/journal/tests/test_client.pyAll done! ✨ 🍰 ✨7 files reformatted, 13 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-listerblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/lister/cgit/tests/test_tasks.pyreformatted swh/lister/bitbucket/tests/test_tasks.pyreformatted swh/lister/cli.pyreformatted docs/new_lister_template.pyreformatted swh/lister/cran/lister.pyreformatted swh/lister/bitbucket/tests/test_lister.pyreformatted swh/lister/bitbucket/lister.pyreformatted swh/lister/cgit/lister.pyreformatted swh/lister/crates/lister.pyreformatted swh/lister/cran/tests/test_lister.pyreformatted swh/lister/gitea/tests/test_tasks.pyreformatted swh/lister/cgit/tests/test_lister.pyreformatted swh/lister/gitlab/tests/test_tasks.pyreformatted swh/lister/gitea/lister.pyreformatted swh/lister/gnu/lister.pyreformatted swh/lister/debian/tests/test_lister.pyreformatted swh/lister/maven/tests/test_tasks.pyreformatted swh/lister/launchpad/lister.pyreformatted swh/lister/gnu/tree.pyreformatted swh/lister/launchpad/tests/test_lister.pyreformatted swh/lister/opam/lister.pyreformatted swh/lister/npm/tests/test_lister.pyreformatted swh/lister/gitlab/tests/test_lister.pyreformatted swh/lister/opam/tests/test_lister.pyreformatted swh/lister/maven/tests/test_lister.pyreformatted swh/lister/maven/lister.pyreformatted swh/lister/packagist/lister.pyreformatted swh/lister/phabricator/tests/test_lister.pyreformatted swh/lister/tests/test_cli.pyreformatted swh/lister/pypi/lister.pyreformatted swh/lister/phabricator/lister.pyreformatted swh/lister/tests/test_utils.pyreformatted swh/lister/tuleap/tests/test_tasks.pyreformatted swh/lister/tuleap/lister.pyreformatted swh/lister/tests/test_pattern.pyreformatted swh/lister/sourceforge/lister.pyAll done! ✨ 🍰 ✨36 files reformatted, 88 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-loader-bzrblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/loader/bzr/tests/test_tasks.pyreformatted swh/loader/bzr/tests/test_loader.pyreformatted swh/loader/bzr/loader.pyAll done! ✨ 🍰 ✨3 files reformatted, 10 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-loader-coreblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/loader/exception.pyreformatted swh/loader/core/tests/test_converters.pyreformatted swh/loader/core/utils.pyreformatted swh/loader/cli.pyreformatted swh/loader/package/cran/tests/test_tasks.pyreformatted swh/loader/core/tests/test_utils.pyreformatted swh/loader/package/archive/loader.pyreformatted swh/loader/core/tests/test_loader.pyreformatted swh/loader/package/deposit/tests/conftest.pyreformatted swh/loader/package/cran/loader.pyreformatted swh/loader/package/deposit/tests/test_tasks.pyreformatted swh/loader/core/loader.pyreformatted swh/loader/package/debian/loader.pyreformatted swh/loader/package/archive/tests/test_archive.pyreformatted swh/loader/package/maven/loader.pyreformatted swh/loader/package/deposit/loader.pyreformatted swh/loader/package/maven/tests/test_tasks.pyreformatted swh/loader/package/cran/tests/test_cran.pyreformatted swh/loader/package/debian/tests/test_debian.pyreformatted swh/loader/package/deposit/tests/test_deposit.pyreformatted swh/loader/package/npm/loader.pyreformatted swh/loader/package/nixguix/loader.pyreformatted swh/loader/package/opam/loader.pyreformatted swh/loader/package/maven/tests/test_maven.pyreformatted swh/loader/package/pypi/loader.pyreformatted swh/loader/package/opam/tests/test_opam.pyreformatted swh/loader/package/nixguix/tests/test_nixguix.pyreformatted swh/loader/package/loader.pyreformatted swh/loader/tests/conftest.pyreformatted swh/loader/pytest_plugin.pyreformatted swh/loader/package/npm/tests/test_npm.pyreformatted swh/loader/package/tests/test_utils.pyreformatted swh/loader/package/tests/test_loader_metadata.pyreformatted swh/loader/tests/test_cli.pyreformatted swh/loader/tests/__init__.pyreformatted swh/loader/package/tests/test_loader.pyreformatted swh/loader/package/pypi/tests/test_pypi.pyreformatted swh/loader/tests/test_init.pyAll done! ✨ 🍰 ✨38 files reformatted, 47 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-loader-cvsblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/loader/cvs/tasks.pyreformatted swh/loader/cvs/tests/test_tasks.pyreformatted swh/loader/cvs/rlog.pyreformatted swh/loader/cvs/loader.pyreformatted swh/loader/cvs/tests/test_loader.pyAll done! ✨ 🍰 ✨5 files reformatted, 7 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-loader-gitblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/loader/git/tasks.pyreformatted swh/loader/git/tests/test_tasks.pyreformatted swh/loader/git/tests/test_utils.pyreformatted swh/loader/git/dumb.pyreformatted swh/loader/git/tests/test_loader.pyreformatted swh/loader/git/from_disk.pyreformatted swh/loader/git/converters.pyreformatted swh/loader/git/loader.pyreformatted swh/loader/git/tests/test_from_disk.pyreformatted swh/loader/git/tests/test_converters.pyAll done! ✨ 🍰 ✨10 files reformatted, 9 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/loader/mercurial/tests/test_tasks.pyreformatted swh/loader/mercurial/tests/data/build.pyreformatted swh/loader/mercurial/identify.pyreformatted swh/loader/mercurial/loader.pyreformatted swh/loader/mercurial/tests/test_loader.pyAll done! ✨ 🍰 ✨5 files reformatted, 16 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-loader-svnblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/loader/svn/exception.pyreformatted swh/loader/svn/tests/test_task.pyreformatted swh/loader/svn/tests/test_converters.pyreformatted swh/loader/svn/tests/test_svn_retry.pyreformatted swh/loader/svn/svn.pyreformatted swh/loader/svn/tests/test_utils.pyreformatted swh/loader/svn/loader.pyreformatted swh/loader/svn/replay.pyreformatted swh/loader/svn/tests/test_externals.pyreformatted swh/loader/svn/tests/test_loader.pyAll done! ✨ 🍰 ✨10 files reformatted, 14 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-modelblack....................................................................Failed- hook id: black- files were modified by this hookreformatted bin/swh-revhashreformatted swh/model/fields/simple.pyreformatted swh/model/fields/hashes.pyreformatted swh/model/fields/compound.pyreformatted swh/model/hashutil.pyreformatted swh/model/merkle.pyreformatted swh/model/cli.pyreformatted swh/model/git_objects.pyreformatted swh/model/from_disk.pyreformatted swh/model/tests/fields/test_compound.pyreformatted swh/model/tests/test_cli.pyreformatted swh/model/hypothesis_strategies.pyreformatted swh/model/tests/test_swh_model_data.pyreformatted swh/model/tests/test_merkle.pyreformatted swh/model/tests/swh_model_data.pyreformatted swh/model/tests/test_from_disk.pyreformatted swh/model/model.pyreformatted swh/model/tests/test_swhids.pyreformatted swh/model/tests/test_identifiers.pyreformatted swh/model/tests/test_model.pyAll done! ✨ 🍰 ✨20 files reformatted, 24 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-objstorageblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/objstorage/api/server.pyreformatted swh/objstorage/backends/seaweedfs/objstorage.pyreformatted swh/objstorage/backends/generator.pyreformatted swh/objstorage/backends/libcloud.pyreformatted swh/objstorage/exc.pyreformatted swh/objstorage/interface.pyreformatted swh/objstorage/backends/winery/objstorage.pyreformatted swh/objstorage/multiplexer/filter/__init__.pyreformatted swh/objstorage/multiplexer/filter/read_write_filter.pyreformatted swh/objstorage/multiplexer/filter/filter.pyreformatted swh/objstorage/factory.pyreformatted swh/objstorage/cli.pyreformatted swh/objstorage/multiplexer/striping_objstorage.pyreformatted swh/objstorage/backends/azure.pyreformatted swh/objstorage/multiplexer/filter/id_filter.pyreformatted swh/objstorage/backends/pathslicing.pyreformatted swh/objstorage/tests/test_objstorage_api.pyreformatted swh/objstorage/objstorage.pyreformatted swh/objstorage/tests/test_objstorage_instantiation.pyreformatted swh/objstorage/multiplexer/multiplexer_objstorage.pyreformatted swh/objstorage/tests/test_objstorage_cloud.pyreformatted swh/objstorage/tests/test_objstorage_seaweedfs.pyreformatted swh/objstorage/tests/test_server.pyreformatted swh/objstorage/tests/test_objstorage_azure.pyreformatted swh/objstorage/tests/test_multiplexer_filter.pyAll done! ✨ 🍰 ✨25 files reformatted, 37 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayerblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/objstorage/replayer/tests/test_replay.pyreformatted swh/objstorage/replayer/cli.pyreformatted swh/objstorage/replayer/tests/test_cli.pyAll done! ✨ 🍰 ✨3 files reformatted, 8 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-perfecthashblack....................................................................Failed- hook id: black- files were modified by this hookreformatted conftest.pyAll done! ✨ 🍰 ✨1 file reformatted, 7 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-py-templateblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/foo/cli.pyAll done! ✨ 🍰 ✨1 file reformatted, 7 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-scannerblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/scanner/client.pyreformatted swh/scanner/dashboard/dashboard.pyreformatted swh/scanner/scanner.pyreformatted swh/scanner/tests/test_client.pyreformatted swh/scanner/data.pyreformatted swh/scanner/tests/conftest.pyreformatted swh/scanner/plot.pyreformatted swh/scanner/cli.pyreformatted swh/scanner/policy.pyAll done! ✨ 🍰 ✨9 files reformatted, 20 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-schedulerblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/scheduler/api/client.pyreformatted swh/scheduler/__init__.pyreformatted swh/scheduler/cli/__init__.pyreformatted swh/scheduler/api/server.pyreformatted swh/scheduler/celery_backend/pika_listener.pyreformatted swh/scheduler/cli/journal.pyreformatted swh/scheduler/celery_backend/runner.pyreformatted swh/scheduler/cli/admin.pyreformatted swh/scheduler/celery_backend/recurrent_visits.pyreformatted swh/scheduler/cli/task_type.pyreformatted swh/scheduler/pytest_plugin.pyreformatted swh/scheduler/cli/origin.pyreformatted swh/scheduler/simulator/task_scheduler.pyreformatted swh/scheduler/interface.pyreformatted swh/scheduler/task.pyreformatted swh/scheduler/model.pyreformatted swh/scheduler/simulator/origins.pyreformatted swh/scheduler/tests/common.pyreformatted swh/scheduler/tests/test_cli_celery_monitor.pyreformatted swh/scheduler/tests/test_cli_journal.pyreformatted swh/scheduler/tests/test_cli_task_type.pyreformatted swh/scheduler/cli/task.pyreformatted swh/scheduler/tests/test_common.pyreformatted swh/scheduler/tests/test_cli_origin.pyreformatted swh/scheduler/tests/test_model.pyreformatted swh/scheduler/tests/test_utils.pyreformatted swh/scheduler/tests/test_recurrent_visits.pyreformatted swh/scheduler/tests/test_server.pyreformatted swh/scheduler/backend.pyreformatted swh/scheduler/tests/test_cli.pyreformatted swh/scheduler/tests/test_journal_client.pyreformatted swh/scheduler/tests/test_scheduler.pyAll done! ✨ 🍰 ✨32 files reformatted, 26 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-scrubberblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/scrubber/utils.pyreformatted swh/scrubber/storage_checker.pyreformatted swh/scrubber/db.pyreformatted swh/scrubber/cli.pyAll done! ✨ 🍰 ✨4 files reformatted, 13 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-searchblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/search/metrics.pyreformatted swh/search/api/server.pyreformatted swh/search/interface.pyreformatted swh/search/tests/test_api_client.pyreformatted swh/search/journal_client.pyreformatted swh/search/cli.pyreformatted swh/search/tests/test_server.pyreformatted swh/search/tests/test_utils.pyreformatted swh/search/tests/test_elasticsearch.pyreformatted swh/search/tests/test_cli.pyreformatted swh/search/tests/test_journal_client.pyreformatted swh/search/utils.pyreformatted swh/search/elasticsearch.pyreformatted swh/search/tests/test_translator.pyreformatted swh/search/in_memory.pyreformatted swh/search/translator.pyreformatted swh/search/tests/test_search.pyAll done! ✨ 🍰 ✨17 files reformatted, 11 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-storageblack....................................................................Failed- hook id: black- files were modified by this hookreformatted setup.pyreformatted swh/storage/algos/origin.pyreformatted swh/storage/cassandra/common.pyreformatted swh/storage/algos/snapshot.pyreformatted swh/storage/api/server.pyreformatted swh/storage/algos/dir_iterators.pyreformatted swh/storage/exc.pyreformatted swh/storage/cassandra/converters.pyreformatted swh/storage/algos/diff.pyreformatted swh/storage/metrics.pyreformatted swh/storage/cli.pyreformatted swh/storage/backfill.pyreformatted swh/storage/postgresql/converters.pyreformatted swh/storage/interface.pyreformatted swh/storage/proxies/filter.pyreformatted swh/storage/proxies/retry.pyreformatted swh/storage/proxies/buffer.pyreformatted swh/storage/in_memory.pyreformatted swh/storage/proxies/tenacious.pyreformatted swh/storage/replay.pyreformatted swh/storage/migrate_extrinsic_metadata.pyreformatted swh/storage/cassandra/cql.pyreformatted swh/storage/tests/conftest.pyreformatted swh/storage/tests/algos/test_origin.pyreformatted swh/storage/postgresql/db.pyreformatted swh/storage/tests/migrate_extrinsic_metadata/test_gnu.pyreformatted swh/storage/tests/algos/test_snapshot.pyreformatted swh/storage/tests/migrate_extrinsic_metadata/test_cran.pyreformatted swh/storage/tests/migrate_extrinsic_metadata/test_nixguix.pyreformatted swh/storage/tests/migrate_extrinsic_metadata/test_debian.pyreformatted swh/storage/cassandra/storage.pyreformatted swh/storage/tests/migrate_extrinsic_metadata/test_npm.pyreformatted swh/storage/tests/test_backfill.pyreformatted swh/storage/tests/migrate_extrinsic_metadata/test_pypi.pyreformatted swh/storage/postgresql/storage.pyreformatted swh/storage/tests/test_cli.pyreformatted swh/storage/tests/test_filter.pyreformatted swh/storage/tests/test_in_memory.pyreformatted swh/storage/tests/storage_data.pyreformatted swh/storage/tests/test_metrics.pyreformatted swh/storage/tests/test_kafka_writer.pyreformatted swh/storage/tests/test_cassandra.pyreformatted swh/storage/tests/test_init.pyreformatted swh/storage/tests/test_server.pyreformatted swh/storage/tests/test_retry.pyreformatted swh/storage/tests/test_buffer.pyreformatted swh/storage/tests/migrate_extrinsic_metadata/test_deposit.pyreformatted swh/storage/tests/test_postgresql_converters.pyreformatted swh/storage/writer.pyreformatted swh/storage/utils.pyreformatted swh/storage/tests/test_validate.pyreformatted swh/storage/tests/test_postgresql.pyreformatted swh/storage/tests/test_replay.pyreformatted swh/storage/tests/test_tenacious.pyreformatted swh/storage/tests/storage_tests.pyAll done! ✨ 🍰 ✨55 files reformatted, 35 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-vaultblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/vault/cookers/directory.pyreformatted swh/vault/cookers/revision_flat.pyreformatted swh/vault/api/server.pyreformatted swh/vault/cookers/__init__.pyreformatted swh/vault/cookers/base.pyreformatted swh/vault/interface.pyreformatted swh/vault/tests/conftest.pyreformatted swh/vault/cli.pyreformatted swh/vault/tests/test_cli.pyreformatted swh/vault/tests/test_init_cookers.pyreformatted swh/vault/tests/test_to_disk.pyreformatted swh/vault/cookers/revision_gitfast.pyreformatted swh/vault/to_disk.pyreformatted swh/vault/tests/test_server.pyreformatted swh/vault/cookers/git_bare.pyreformatted swh/vault/tests/test_git_bare_cooker.pyreformatted swh/vault/tests/test_cookers.pyAll done! ✨ 🍰 ✨17 files reformatted, 20 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-webblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/web/add_forge_now/migrations/0004_rename_tables.pyreformatted swh/web/admin/add_forge_now.pyreformatted swh/web/add_forge_now/views.pyreformatted swh/web/add_forge_now/models.pyreformatted swh/web/api/apiresponse.pyreformatted swh/web/api/throttling.pyreformatted swh/web/api/views/revision.pyreformatted swh/web/auth/migrations/0001_initial.pyreformatted swh/web/api/views/utils.pyreformatted swh/web/auth/migrations/0003_delete_oidcuser.pyreformatted swh/web/auth/migrations/0005_usermailmapevent.pyreformatted swh/web/auth/migrations/0004_usermailmap.pyreformatted swh/web/api/views/add_forge_now.pyreformatted swh/web/api/utils.pyreformatted swh/web/api/views/vault.pyreformatted swh/web/auth/mailmap.pyreformatted swh/web/api/apidoc.pyreformatted swh/web/auth/views.pyreformatted swh/web/browse/views/origin.pyreformatted swh/web/browse/views/directory.pyreformatted swh/web/browse/views/content.pyreformatted swh/web/common/migrations/0001_initial.pyreformatted swh/web/common/converters.pyreformatted swh/web/common/migrations/0011_saveoriginrequest_user_ids.pyreformatted swh/web/browse/utils.pyreformatted swh/web/common/swh_templatetags.pyreformatted swh/web/config.pyreformatted swh/web/misc/badges.pyreformatted swh/web/common/identifiers.pyreformatted swh/web/browse/views/revision.pyreformatted swh/web/common/utils.pyreformatted swh/web/common/origin_save.pyreformatted swh/web/settings/common.pyreformatted swh/web/misc/iframe.pyreformatted swh/web/misc/coverage.pyreformatted swh/web/tests/add_forge_now/test_views.pyreformatted swh/web/common/archive.pyreformatted swh/web/tests/api/views/test_metadata.pyreformatted swh/web/browse/snapshot_context.pyreformatted swh/web/tests/api/views/test_revision.pyreformatted swh/web/tests/api/views/test_graph.pyreformatted swh/web/tests/api/views/test_add_forge_now.pyreformatted swh/web/tests/api/views/test_origin_save.pyreformatted swh/web/tests/browse/test_utils.pyreformatted swh/web/tests/api/views/test_vault.pyreformatted swh/web/tests/auth/test_views.pyreformatted swh/web/tests/auth/test_mailmap.pyreformatted swh/web/tests/browse/test_snapshot_context.pyreformatted swh/web/tests/browse/views/test_release.pyreformatted swh/web/tests/browse/views/test_revision.pyreformatted swh/web/tests/api/views/test_origin.pyreformatted swh/web/tests/common/test_django_command.pyreformatted swh/web/tests/browse/views/test_directory.pyreformatted swh/web/tests/browse/views/test_snapshot.pyreformatted swh/web/tests/browse/views/test_origin.pyreformatted swh/web/tests/common/test_origin_visits.pyreformatted swh/web/tests/common/test_converters.pyreformatted swh/web/tests/inbound_email/test_utils.pyreformatted swh/web/tests/common/test_origin_save.pyreformatted swh/web/tests/misc/test_badges.pyreformatted swh/web/tests/common/test_identifiers.pyreformatted swh/web/tests/test_config.pyreformatted swh/web/tests/test_migrations.pyreformatted swh/web/tests/misc/test_metrics.pyreformatted swh/web/tests/browse/views/test_content.pyreformatted swh/web/tests/strategies.pyreformatted swh/web/tests/test_templates.pyreformatted swh/web/tests/utils.pyreformatted swh/web/tests/data.pyreformatted swh/web/tests/common/test_archive.pyreformatted swh/web/tests/conftest.pyAll done! ✨ 🍰 ✨71 files reformatted, 142 files left unchanged.mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-web-clientblack....................................................................Failed- hook id: black- files were modified by this hookreformatted swh/web/client/tests/conftest.pyreformatted swh/web/client/cli.pyreformatted swh/web/client/client.pyAll done! ✨ 🍰 ✨3 files reformatted, 12 files left unchanged.mr run: command failedmr run: finished (1 ok; 31 failed)mr run: /home/anlambert/swh/swh-environment/snippetsmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsOn branch masterYour branch is up to date with 'origin/master'.nothing to commit, working tree cleanmr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-auth[master 894096a] python: Reformat code with black 22.3.0 5 files changed, 19 insertions(+), 17 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-core[master 0581345] python: Reformat code with black 22.3.0 27 files changed, 194 insertions(+), 157 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-counters[master 7444e71] python: Reformat code with black 22.3.0 11 files changed, 88 insertions(+), 43 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-dataset[master 71d3d84] python: Reformat code with black 22.3.0 8 files changed, 73 insertions(+), 24 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-deposit[master 144c190b] python: Reformat code with black 22.3.0 74 files changed, 788 insertions(+), 811 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-docsOn branch masterYour branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits)nothing to commit, working tree cleanmr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-fuse[master 0e7c68a] python: Reformat code with black 22.3.0 10 files changed, 137 insertions(+), 96 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-graph[master 6961bb6] python: Reformat code with black 22.3.0 7 files changed, 113 insertions(+), 34 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-icinga-plugins[master 49eee74] python: Reformat code with black 22.3.0 6 files changed, 133 insertions(+), 64 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-indexer[master a2617b9] python: Reformat code with black 22.3.0 36 files changed, 664 insertions(+), 286 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-journal[master 6573c37] python: Reformat code with black 22.3.0 7 files changed, 42 insertions(+), 22 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-lister[master 959190e] python: Reformat code with black 22.3.0 37 files changed, 265 insertions(+), 144 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-bzr[master 04e9cf1] python: Reformat code with black 22.3.0 4 files changed, 17 insertions(+), 5 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-core[master 7e006fd] python: Reformat code with black 22.3.0 38 files changed, 572 insertions(+), 376 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-cvs[master bffdb59] python: Reformat code with black 22.3.0 6 files changed, 95 insertions(+), 50 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-git[master 9225bd3] python: Reformat code with black 22.3.0 10 files changed, 167 insertions(+), 88 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-mercurial[master a1edfed] python: Reformat code with black 22.3.0 6 files changed, 81 insertions(+), 33 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-loader-svn[master 9d05aa7] python: Reformat code with black 22.3.0 10 files changed, 414 insertions(+), 180 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-model[master 3190a1c] python: Reformat code with black 22.3.0 20 files changed, 767 insertions(+), 242 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-objstorage[master 1a1aac9] python: Reformat code with black 22.3.0 25 files changed, 103 insertions(+), 88 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayer[master b3fcd3d] python: Reformat code with black 22.3.0 3 files changed, 31 insertions(+), 9 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-perfecthash[master a9793b3] python: Reformat code with black 22.3.0 1 file changed, 11 insertions(+), 3 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-py-template[master 7393f87] python: Reformat code with black 22.3.0 1 file changed, 1 insertion(+), 2 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-scanner[master 1d4aebc] python: Reformat code with black 22.3.0 9 files changed, 39 insertions(+), 33 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-scheduler[master 456ef0f] python: Reformat code with black 22.3.0 32 files changed, 396 insertions(+), 163 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-scrubber[master c2d93bf] python: Reformat code with black 22.3.0 4 files changed, 21 insertions(+), 7 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-search[master 9cd8dd2] python: Reformat code with black 22.3.0 17 files changed, 212 insertions(+), 73 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-storage[master 9af98a5b] python: Reformat code with black 22.3.0 55 files changed, 1469 insertions(+), 561 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-vault[master a3daa7b] python: Reformat code with black 22.3.0 17 files changed, 130 insertions(+), 60 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-web[master a875c958] python: Reformat code with black 22.3.0 71 files changed, 1015 insertions(+), 473 deletions(-)mr run: /home/anlambert/swh/swh-environment/swh-web-client[master 6246af9] python: Reformat code with black 22.3.0 5 files changed, 46 insertions(+), 36 deletions(-)mr run: finished (30 ok; 2 failed)mr run: /home/anlambert/swh/swh-environment/snippetsmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsmr run: /home/anlambert/swh/swh-environment/swh-authmr run: /home/anlambert/swh/swh-environment/swh-coremr run: /home/anlambert/swh/swh-environment/swh-countersmr run: /home/anlambert/swh/swh-environment/swh-datasetmr run: /home/anlambert/swh/swh-environment/swh-depositmr run: /home/anlambert/swh/swh-environment/swh-docsmr run: /home/anlambert/swh/swh-environment/swh-fusemr run: /home/anlambert/swh/swh-environment/swh-graphmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsmr run: /home/anlambert/swh/swh-environment/swh-indexermr run: /home/anlambert/swh/swh-environment/swh-journalmr run: /home/anlambert/swh/swh-environment/swh-listermr run: /home/anlambert/swh/swh-environment/swh-loader-bzrmr run: /home/anlambert/swh/swh-environment/swh-loader-coremr run: /home/anlambert/swh/swh-environment/swh-loader-cvsmr run: /home/anlambert/swh/swh-environment/swh-loader-gitmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialmr run: /home/anlambert/swh/swh-environment/swh-loader-svnmr run: /home/anlambert/swh/swh-environment/swh-modelmr run: /home/anlambert/swh/swh-environment/swh-objstoragemr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayermr run: /home/anlambert/swh/swh-environment/swh-perfecthashmr run: /home/anlambert/swh/swh-environment/swh-py-templatemr run: /home/anlambert/swh/swh-environment/swh-scannermr run: /home/anlambert/swh/swh-environment/swh-schedulermr run: /home/anlambert/swh/swh-environment/swh-scrubbermr run: /home/anlambert/swh/swh-environment/swh-searchmr run: /home/anlambert/swh/swh-environment/swh-storagemr run: /home/anlambert/swh/swh-environment/swh-vaultmr run: /home/anlambert/swh/swh-environment/swh-webmr run: /home/anlambert/swh/swh-environment/swh-web-clientmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippets[master 0871eac] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-authtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master b5b5068] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-coretrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 25e3a9d] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-counterstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master bae2e34] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-datasettrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master d7ba6db] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-deposittrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 6bc4d4e3] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-docstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 828ea3f] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-fusetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master dfecb16] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-graphtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedjava style...............................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedjava style...............................................................Passed[master f72d9db] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master f253a47] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-indexertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 1e7afd6] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-journaltrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 3fa2ce0] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-listertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 074112f] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-loader-bzrtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 8de1957] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-loader-coretrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master d88d7a3] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-loader-cvstrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 0b85ef1] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-loader-gittrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master d1057d2] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master a1121e0] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-loader-svntrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 51c5db7] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-modeltrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 567a2ad] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-objstoragetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 9b7f1ae] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 56808e4] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-perfecthashtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 211813f] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-py-templatetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 6cfd480] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-scannertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master e03840c] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-schedulertrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master a65cb62] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-scrubberTrim Trailing Whitespace.................................................PassedCheck JSON...........................................(no files to check)SkippedCheck Yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)Skippedcodespell................................................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 1fd14cf] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-searchtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 1ab3782] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-storagetrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedcheck-bumped-dbversion...............................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedcheck-bumped-dbversion...............................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master b6e5fef4] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-vaulttrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 18b3b02] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-webtrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedeslint...............................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedeslint...............................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master e7fb8e24] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 8 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: /home/anlambert/swh/swh-environment/swh-web-clienttrim trailing whitespace.................................................Passedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck source code spelling...............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skippedcheck json...........................................(no files to check)Skippedcheck yaml...........................................(no files to check)Skippedflake8...............................................(no files to check)SkippedCheck commit message spelling............................................Passedmypy.................................................(no files to check)Skippedisort................................................(no files to check)Skippedblack................................................(no files to check)Skipped[master 0bc8d81] Add .git-blame-ignore-revs file with automatic reformatting commits 1 file changed, 5 insertions(+) create mode 100644 .git-blame-ignore-revsmr run: finished (32 ok)mr run: /home/anlambert/swh/swh-environment/snippetsAn error has occurred: InvalidConfigError: =====> .pre-commit-config.yaml is not a fileCheck the log at /home/anlambert/.cache/pre-commit/pre-commit.logmr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-authflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-coreflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-countersflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-datasetflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-depositflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-docsflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-fuseflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-graphflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-icinga-pluginsflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-indexerflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-journalflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-listerflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-loader-bzrflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-loader-coreflake8...................................................................Failed- hook id: flake8- exit code: 1swh/loader/package/opam/loader.py:216:98: B950 line too long (97 > 88 characters)mr run: command failedmr run: /home/anlambert/swh/swh-environment/swh-loader-cvsflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-loader-gitflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-loader-mercurialflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-loader-svnflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-modelflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-objstorageflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-objstorage-replayerflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-perfecthashflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-py-templateflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-scannerflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-schedulerflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-scrubberflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-searchflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-storageflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-vaultflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-webflake8...................................................................Passedmr run: /home/anlambert/swh/swh-environment/swh-web-clientflake8...................................................................Passedmr run: finished (30 ok; 2 failed)
We can see than apart a manual intervention still required to fix a line length issue in opam loader that black could not handle, everything went fine.
I propose to apply the effects of that script and push the commits to remotes at the end of the week in order to not interfere with the current opened diffs.