| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Before these changes, these violations happened:
```
lint run-test: commands[6] | python -m pylint --notes= coverage tests doc ci igor.py setup.py __main__.py
************* Module coverage.parser
coverage/parser.py:1290 I: Useless suppression of 'too-many-function-args' (useless-suppression)
************* Module ci.download_gha_artifacts
ci/download_gha_artifacts.py:18 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout)
ci/download_gha_artifacts.py:54 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout)
************* Module ci.trigger_build_kits
ci/trigger_build_kits.py:21 W: Missing timeout argument for method 'requests.post' can cause your program to hang indefinitely (missing-timeout)
************* Module ci.github_releases
ci/github_releases.py:138 E: Too many positional arguments for function call (too-many-function-args)
ci/github_releases.py:138 I: Useless suppression of 'no-value-for-parameter' (useless-suppression)
************* Module ci.comment_on_fixes
ci/comment_on_fixes.py:30 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout)
ci/comment_on_fixes.py:37 W: Missing timeout argument for method 'requests.get' can cause your program to hang indefinitely (missing-timeout)
ci/comment_on_fixes.py:49 W: Missing timeout argument for method 'requests.post' can cause your program to hang indefinitely (missing-timeout)
************* Module ci.parse_relnotes
ci/parse_relnotes.py:126 E: Too many positional arguments for function call (too-many-function-args)
ci/parse_relnotes.py:126 I: Useless suppression of 'no-value-for-parameter' (useless-suppression)
```
|
| |
|
|
|
|
|
|
|
|
| |
Also: remove --no-index for installing ourselves.
PEP-517 compliance means we need to use PyPI to get setuptools, so we
can't use --no-index anymore. I think this was added just to speed up
the initial installation of the virtualenv used in these tests.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
https://foss.heptapod.net/pypy/pypy/-/issues/3792
|
|
|
|
| |
a directory
|
|
|
|
| |
https://foss.heptapod.net/pypy/pypy/-/issues/3792
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Found by OSS-Fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=50381
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
If .pip files are pip-compile'd separately, they can have different
pinned versions. Then when installed together, pip can't resolve the
difference. Instead, pip-compile multiple .in files to produce one .pip
file that is installed.
|
| |
|
| |
|
| |
|
|
|
|
| |
This reverts commit 015e42af088e03c4c69068b191be9212d7808689.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
I used this tweak to the Makefile to mostly just add hashes, though some
dependencies were also upgraded, not sure why...
@@ -74,7 +74,7 @@ metasmoke:
.PHONY: upgrade
-PIP_COMPILE = pip-compile --upgrade --allow-unsafe
+PIP_COMPILE = pip-compile --allow-unsafe --generate-hashes
upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
upgrade: ## Update the *.pip files with the latest packages satisfying *.in files.
pip install -q -r requirements/pip-tools.pip
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
* Fix paths when running coverage from root
* Add simple tests
* Use nested pattern for older python versions
|
| |
|
|
|
|
|
| |
* Fix globbing of filenames that contain special glob characters
* glob the path as well as the filename
|
| |
|
|
|
|
|
|
|
|
|
| |
In the HTML report, if the "filter" input contains a value when
the page loads, it is ignored. This happens even though an event
is actually created on start-up to trigger the refresh.
I believe this is a regression introduced in
9a1954a224c7c0f578513d8f4ca5f821fcf2cf5a, when the observed
events changed from "keyup change" to "input".
|
| |
|
| |
|
|
|
|
|
| |
volume on win32 (#1428) (#1430)
Co-authored-by: Lorenzo Micò <lmico@dxc.com>
|
| |
|
| |
|