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

Cypress pr message #11

Draft
wants to merge 62 commits into
base: master
Choose a base branch
from
Draft

Cypress pr message #11

wants to merge 62 commits into from

Conversation

atrovato
Copy link
Owner

Pull Request check-list

To ensure your Pull Request can be accepted as fast as possible, make sure to review and check all of these items:

  • If your changes affects code, did your write the tests?
  • Are tests passing? (npm test on both front/server)
  • Is the linter passing? (npm run eslint on both front/server)
  • Did you run prettier? (npm run prettier on both front/server)
  • If you are adding a new features/services, did you run integration comparator? (npm run compare-translations on front)
  • If your changes modify the API (REST or Node.js), did you modify the API documentation? (Documentation is based on comments in code)
  • If you are adding a new features/services which needs explanation, did you modify the user documentation? See the GitHub repo and the website.
  • Did you add fake requests data for the demo mode (front/src/config/demo.json) so that the demo website is working without a backend? (if needed) See https://demo.gladysassistant.com.

NOTE: these things are not required to open a PR and can be done afterwards / while the PR is open.

Description of change

Please provide a description of the change here. It's always best with screenshots, so don't hesitate to add some!

Pierre-Gilles and others added 30 commits March 26, 2021 10:55
…stant#1109)

* Update dependencies

* Add dependencies security audit in GitHub action
* feat(zigbee2mqtt): Add service integration

* feat(core): Add Stop Docker container function in system

* feat(core): Add USB informations (productId, vectorId) for dongle differentiation

* feat(core): Exclude zigbee2mqtt-container.json from nodemon

* fix(zigbee2mqtt): Remove USB disable_led and fix path

* fix(zigbee2mqtt): Containers' names and detection

* feat(zigbee2mqtt): Setup Page in Mobile

* fix(zigbee2mqtt): MQTT clientId random suffix + mosquito 2

* feat(zigbee2mqtt): Device detection and not managed devices

* feat(zigbee2mqtt): Add TuYa, Lonsonho devices and fix models

* test(zigbee2mqtt): Finish test 🚀

* fix(zigbee2mqtt): Feedbacks Louis

- Error message when scan returns no device
- Revamp feature and value convertion
- Ignore empty MQTT messages
- Put default name for each feature
- Add hectoPascal Unit
- Fix kWh unit

* fix(zigbee2mqtt): Last fixes

- Manage websocket connection lost in Discover
- Remove devices without model from Discover
- Automatic feature name

* Update Xiaomi.js

Update:
* Aqara door & window contact sensor (MCCGQ11LM) to add temperature feature

Add:
* Aqara D1 single key wireless wall switch (WXKG06LM)

* feat(zigbee2mqtt): Refactor and clean server code + doc

* feat(zigbee2mqtt): Take PR feedbacks

- i18n and localization fixes
- reuse common getHouse action
- removeListeners in component unmount
- use classNames and external styles
- remove unused code
- fix mosquitto version to 2
- add demo.json
- clean images and unwanted tracked files

* feat(zigbee2mqtt): Manage SQL_FILE_PATH to store files

* feat(zigbee2mqtt): Deactivate buttons if service not configured

* feat(zigbee2mqtt): Add TuYa TS0011 device

* feat(zigbee2mqtt): Manage click button values

* fix(zigbee2mqtt): Fix getHouses common action usage

Signed-off-by: Cyril Beslay <[email protected]>

* fix(zigbee2mqtt): Fix some Xiaomi Devices

* docs(zigbee2mqtt): Update documentation link

* feat(docker): Add getContainerMounts in system

* feat(zigbee2mqtt): Path management

Create files on host regarding mount configuration

Co-authored-by: Reno <[email protected]>
Co-authored-by: Louis MILCENT <[email protected]>
Co-authored-by: Pierre-Gilles Leymarie <[email protected]>
* Fix dependencies server

* npm audit fix everywhere
comVid (vendorId) is empty if /udev/ is not mounted in the container
* feat(zigbee2mqtt): Handle TuYa TT001ZAV20

* feat(zigbee2mqtt): Add TuYa SNTZ007

* feat(zigbee2mqtt): Add ORVIBO Device SN10ZW

* feat(zigbee2mqtt): Add SONOFF SNZB-* devices

* feat(zigbee2mqtt): SNZB-01 is button not switch

Co-authored-by: Pierre-Gilles Leymarie <[email protected]>
- Fix models
- Fix brightness feature (not read_only)
* docs: update README.md [skip ci]

* docs: update .all-contributorsrc [skip ci]

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Pierre-Gilles and others added 26 commits April 22, 2021 16:57
…ands (GladysAssistant#1177)

* Add brain E2E test to check if response of node-nlp change

* Fix get temperature in room chat command

* Fix get humidity in room in chat

* Fix get camera image command

* Fix light turn on/turn off command
@codecov
Copy link

codecov bot commented May 15, 2021

Codecov Report

Merging #11 (1311399) into master (dc25cf7) will increase coverage by 0.86%.
The diff coverage is 99.81%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #11      +/-   ##
==========================================
+ Coverage   95.59%   96.45%   +0.86%     
==========================================
  Files         532      644     +112     
  Lines        7189     8205    +1016     
==========================================
+ Hits         6872     7914    +1042     
+ Misses        317      291      -26     
Impacted Files Coverage Δ
server/api/controllers/weather.controller.js 100.00% <ø> (ø)
server/lib/user/user.getById.js 100.00% <ø> (ø)
server/models/scene.js 93.75% <ø> (ø)
server/seeders/20190227081700-device-feature.js 100.00% <ø> (ø)
server/services/usb/api/usb.controller.js 100.00% <ø> (ø)
server/lib/system/system.stopContainer.js 83.33% <83.33%> (ø)
server/lib/weather/weather.command.js 89.13% <96.66%> (+74.84%) ⬆️
server/api/controllers/calendar.controller.js 100.00% <100.00%> (ø)
server/api/controllers/http.controller.js 100.00% <100.00%> (ø)
server/api/controllers/room.controller.js 100.00% <100.00%> (ø)
... and 255 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update dc25cf7...1311399. Read the comment docs.

@atrovato atrovato force-pushed the cypress-pr-message branch from 1d95d91 to 1311399 Compare May 15, 2021 11:15
@atrovato atrovato marked this pull request as draft May 4, 2023 07:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants