diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2023-12-17 10:46:44 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2023-12-17 10:46:44 +0000 |
commit | 70b47719c91522ab53abc763eb6da3b62c1a00c9 (patch) | |
tree | db7906833e1af835fb2addf0c220f00904969cd7 /.github/workflows | |
parent | Releasing debian version 3.0.23-3. (diff) | |
download | ptpython-70b47719c91522ab53abc763eb6da3b62c1a00c9.tar.xz ptpython-70b47719c91522ab53abc763eb6da3b62c1a00c9.zip |
Merging upstream version 3.0.25.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 31837db..9a50f3b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -22,13 +22,13 @@ jobs: run: | sudo apt remove python3-pip python -m pip install --upgrade pip - python -m pip install . black isort mypy pytest readme_renderer + python -m pip install . ruff mypy pytest readme_renderer pip list - name: Type Checker run: | mypy ptpython - isort -c --profile black ptpython examples setup.py - black --check ptpython examples setup.py + ruff . + ruff format --check . - name: Run Tests run: | ./tests/run_tests.py |