Skip to content

Commit

Permalink
Drop PyPy unit testing - improves consistency (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc authored Aug 12, 2023
1 parent 3d16cbf commit c56d4c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,6 @@ jobs:
- os: "ubuntu-latest"
python-version: "3.11"

# Test more available versions of PyPy on Linux.
- os: "ubuntu-latest"
python-version: "pypy3.8"
- os: "ubuntu-latest"
python-version: "pypy3.9"

defaults:
run:
shell: bash
Expand Down Expand Up @@ -114,13 +108,10 @@ jobs:
run: |
pip install -r all-plugin-requirements.txt
# Installing `dbus-python` will only work on Linux/CPython.
[[ $RUNNER_OS = "Linux" && $PYTHON != 'pypy'* ]] && pip install dbus-python || true
- name: Install project dependencies (Windows)
if: runner.os == 'Windows'
run: |
[[ $PYTHON != 'pypy'* ]] && pip install -r win-requirements.txt || true
pip install -r win-requirements.txt || true
# Install package in editable mode,
# and run project-specific tasks.
Expand Down
3 changes: 1 addition & 2 deletions apprise/plugins/NotifyBoxcar.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,7 @@ def send(self, body, title='', notify_type=NotifyType.INFO, **kwargs):
if title:
payload['aps']['@title'] = title

if body:
payload['aps']['alert'] = body
payload['aps']['alert'] = body

if self._tags:
payload['tags'] = {'or': self._tags}
Expand Down

0 comments on commit c56d4c5

Please sign in to comment.