Add PW_NEG_SOLAR config option and logic to remove negative solar val… #787
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: simulator | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: "Python ${{ matrix.python-version }}" | |
runs-on: "ubuntu-20.04" | |
env: | |
USING_COVERAGE: '3.8' | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
services: | |
simulator: | |
image: ${{ github.repository_owner }}/pwsimulator | |
ports: | |
- 443:443 | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Install dependencies" | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
python -m pip install --upgrade pip setuptools wheel | |
pip install --upgrade requests protobuf teslapy | |
- name: "Run test.py on ${{ matrix.python-version }}" | |
run: "python example.py" |