Skip to content

Commit 89a2962

Browse files
authored
Merge pull request #125 from mathbunnyru/asalikhov/remove_python_warning
Use python-version: 3.x to get rid of warning
2 parents 51cdaad + 3f75e0c commit 89a2962

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v3
2121
- uses: actions/setup-python@v4
22+
with:
23+
python-version: 3.x
2224
- uses: pre-commit/[email protected]
2325

2426
# Run tests
@@ -35,14 +37,16 @@ jobs:
3537
- uses: actions/checkout@v3
3638

3739
- uses: actions/setup-python@v4
40+
with:
41+
python-version: 3.x
3842

3943
- name: Get Docker version
4044
run: |
4145
docker --version
4246
docker-compose --version
4347
4448
- name: Install pytest
45-
run: pip install pytest
49+
run: pip install pytest requests
4650

4751
- name: Add a test admin token
4852
run: cat ci/config_token.py >> ${{ matrix.example }}/jupyterhub_config.py

0 commit comments

Comments
 (0)