File tree 5 files changed +1915
-299
lines changed
5 files changed +1915
-299
lines changed Original file line number Diff line number Diff line change 10
10
run_image :
11
11
runs-on : [ubuntu-latest]
12
12
container :
13
- image : matanrubin/ python-poetry :3.9
13
+ image : python:3.10
14
14
15
15
env :
16
16
TEST_REDIS_SERVER : True
31
31
- run : make coverage
32
32
33
33
# Run pylint+mypy after installing psutil so they don't complain on missing dependencies
34
- - run : poetry install --extras psutil
34
+ - run : poetry install --extras flask --extras fastapi --extras aiohttp --extras tornado --extras db --extras redis --extras psutil
35
35
- run : make check
36
36
37
37
# Run tests with coverage again - this adds tests that require psutil
Original file line number Diff line number Diff line change 10
10
run_image :
11
11
runs-on : [ubuntu-latest]
12
12
container :
13
- image : matanrubin/ python-poetry :3.9
13
+ image : python:3.10
14
14
15
15
steps :
16
16
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 10
10
@echo " - coverage Check test coverage"
11
11
12
12
bootstrap :
13
- poetry --version || curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
13
+ poetry --version || curl -sSL https://install.python-poetry.org | python3 -
14
+ ln -s $HOME /.local/bin/poetry /usr/local/bin
14
15
poetry install
15
16
16
17
check : pylint mypy
You can’t perform that action at this time.
0 commit comments