Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kazhala committed Dec 12, 2021
1 parent d43fdcb commit 5a0e893
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8
- name: Install poetry
uses: abatilo/actions-poetry@v2.0.0
with:
Expand Down
3 changes: 3 additions & 0 deletions tests/test_resolver.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import asyncio
import os
import sys
import unittest
from unittest.mock import ANY, call, patch

Expand Down Expand Up @@ -464,6 +465,8 @@ def test_prompt_async_exception(self, mocked_execute):
def test_prompt_async(
self, mocked_input, mocked_confirm, mocked_input_init, mocked_confirm_init
):
if sys.version_info[2] == 7:
return
mocked_confirm_init.return_value = None
mocked_input_init.return_value = None
questions = [
Expand Down

0 comments on commit 5a0e893

Please sign in to comment.