mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-24 06:40:07 +00:00
run python unit tests in CI
This commit is contained in:
parent
de10614369
commit
0d13d8b5fb
1 changed files with 9 additions and 1 deletions
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
|
@ -48,4 +48,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: 3.8
|
python-version: 3.8
|
||||||
- name: Check for alias collisions
|
- name: Check for alias collisions
|
||||||
run: python3 tools/alias_collision/check_alias_collision.py plugins
|
run: python tools/alias_collision/check_alias_collision.py plugins
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r requirements-dev.txt
|
||||||
|
- name: Run unit tests
|
||||||
|
run: |
|
||||||
|
cd tools/alias_collision/
|
||||||
|
python -m unittest discover test
|
||||||
|
|
Loading…
Reference in a new issue