Skip to content

Commit

Permalink
Merge pull request #145 from EVerest/fix/python-test-framework-deps
Browse files Browse the repository at this point in the history
fix: Python testing dependnecies
  • Loading branch information
james-ctc authored Jun 3, 2024
2 parents 425bec9 + 0105cb3 commit 1ba0441
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions everest-testing/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ install_requires =
python-dateutil
paho-mqtt ==1.6.1
pyftpdlib
ocpp
ocpp ==0.26.0
websockets
pyOpenSSL
pyyaml
cryptography ==41.0.1

package_dir =
package_dir =
= src

python_requires = >=3.8
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def start(self, standalone_module: Optional[Union[str, List[str]]] = None, test_
def read_everest_log(self):
while self.process.poll() == None:
stderr_raw = self.process.stderr.readline()
stderr_formatted = stderr_raw.strip().decode()
stderr_formatted = stderr_raw.strip().decode(errors="ignore")
logging.debug(f' {stderr_formatted}')

if self.process.returncode == 0:
Expand Down

0 comments on commit 1ba0441

Please sign in to comment.