summaryrefslogtreecommitdiff
path: root/maint/matrix-check
Commit message (Collapse)AuthorAgeFilesLines
* maint: Fix python lintsWesley Aptekar-Cassels2025-03-051-2/+2
|
* maint: Add note to matrix-check CLI about assumed invariants.Wesley Aptekar-Cassels2025-03-051-1/+2
|
* maint: Add docs to matrix-check and sort list of cratesWesley Aptekar-Cassels2025-03-051-2/+9
|
* maint: Make matrix-check run in parallel in CI.Wesley Aptekar-Cassels2025-03-041-1/+23
| | | | | | | | | | | | We should ideally do this for every-crate as well, but since that's written in bash, it's a little more annoying to do. The options there are either to rewrite it in python (probably good to do anyways) or to modify the list_crates script to move the parallelization in there (useful since it lets us reuse code, but doing that with a generator is likely not possible). For now I'm just going to file a ticket to do that and go back to working on stuff i actually should be doing :) Fixes: #1625
* maint: use `Crate.subdir` in matrix-checkSteven Engler2025-02-031-17/+1
|
* maint: pass `Crate` to `test_crate` in matrix-checkSteven Engler2025-02-031-10/+10
|
* arti-relay: remove runtime/tls-related featuresSteven Engler2024-11-141-3/+2
|
* arti-relay: add 'test-all-crates' and 'matrix-check' exceptionsSteven Engler2024-11-131-2/+3
|
* python: Use "a not in b" rather than "not a in b".Nick Mathewson2024-10-241-1/+1
| | | | Due to precedence, both work the same, but the former is preferred.
* Run "black" to reformat all our pythonNick Mathewson2024-10-241-19/+43
| | | | | | | | | | | | | | | | | "Black" is an "opinionated" python formatter, whose opinionatedness is somewhat in the spirit of rustfmt. This MR runs black with default settings on all of our python code in Arti. It was produced by the following commands ``` # Everything in python/ black python/ # Everything with a .py extension fd '.py$' -X black # Everything with a python shebang. git grep -l '#! */usr/bin/env *python' | xargs black ```
* add example: axum router as onion servicetidely2024-09-241-0/+1
|
* Rename matrix-check from matrix_testIan Jackson2024-08-191-0/+111
There's a TODO asking for `check` to be changed to `test`. And we're about to invent a thing that does, sort of, the `test`.