Misc dependencies and mock fixes.
continuous-integration/drone/push Build is passing Details

- `iputils` should be an explicit system dependency for `ping`.
  Some minimal systems (like some Docker images) may not have the `ping`
  command installed out of the box.

- `hid` and `marshmallow_dataclass` should be among the auto-mocked
  modules.
This commit is contained in:
Fabio Manganiello 2023-10-20 00:09:11 +02:00
parent ed2a56de42
commit 0eae6fd48d
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
4 changed files with 18 additions and 4 deletions

View File

@ -113,8 +113,8 @@ steps:
commands:
- echo "Installing required build dependencies"
- apk add --update --no-cache make py3-sphinx py3-myst-parser py3-pip py3-paho-mqtt $(cat platypush/install/requirements/alpine.txt)
- pip install -U hid sphinx-rtd-theme sphinx-book-theme
- apk add --update --no-cache make py3-sphinx py3-myst-parser py3-pip $(cat platypush/install/requirements/alpine.txt)
- pip install -U sphinx-rtd-theme sphinx-book-theme
- pip install .
- mkdir -p /docs/current
- export APPDIR=$PWD

View File

@ -3,6 +3,12 @@ manifest:
platypush.message.event.ping.HostDownEvent: if a host stops responding ping requests
platypush.message.event.ping.HostUpEvent: if a host starts responding ping requests
install:
pip: []
apt:
- iputils-ping
dnf:
- iputils
pacman:
- iputils
package: platypush.backend.ping
type: backend

View File

@ -1,6 +1,12 @@
manifest:
events: {}
install:
pip: []
apt:
- iputils-ping
dnf:
- iputils
pacman:
- iputils
package: platypush.plugins.ping
type: plugin

View File

@ -45,6 +45,7 @@ mock_imports = [
"graphyte",
"grpc",
"gunicorn",
"hid",
"httplib2",
"icalendar",
"imapclient",
@ -60,6 +61,7 @@ mock_imports = [
"keras",
"linode_api4",
"luma",
"marshmallow_dataclass",
"mpd",
"ndef",
"nfc",