Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Treading #397

Merged
merged 19 commits into from
Aug 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cache to composite action
  • Loading branch information
Der-Henning committed Aug 1, 2023
commit 217b30bcb651c947614bae97269677db3b0b65e0
4 changes: 4 additions & 0 deletions .github/actions/setup-poetry-action/action.yml
Original file line number Diff line number Diff line change
@@ -35,6 +35,10 @@ runs:
poetry config virtualenvs.create true
poetry config virtualenvs.in-project true
poetry config installer.max-workers 1
- uses: actions/cache@v3
with:
path: ./.venv
key: venv-without-${{ inputs.without }}-poetry-${{ inputs.poetry-version }}-python-${{ inputs.python-version }}-${{ hashFiles('poetry.lock') }}-${{ runner.os }}
- name: Install dependencies
if: inputs.without != '' && inputs.install-dependencies
shell: bash
4 changes: 2 additions & 2 deletions tests/test_notifiers.py
Original file line number Diff line number Diff line change
@@ -218,7 +218,7 @@ def test_console(test_item: Item, reservations: Reservations,
console = Console(config, reservations, favorites)
console.start()
console.send(test_item)
sleep(0.1)
sleep(0.5)
captured = capsys.readouterr()
console.stop()

@@ -237,7 +237,7 @@ def test_script(test_item: Item, reservations: Reservations,
script = Script(config, reservations, favorites)
script.start()
script.send(test_item)
sleep(0.1)
sleep(0.5)
captured = capfdbinary.readouterr()
script.stop()