Files
Eric F d398a6ced2 Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1)
- OpenOCPP extracted (firmware OCPP 1.6J/2.0.1)
- ShapeShifter library installed (pip install -e)
- ShapeShifter specification extracted
- EVerest extracted

TODO updated with progress
2026-06-08 00:38:27 -04:00

27 lines
757 B
Python

load("//applications/utils:requirements.bzl", "requirement")
load("@rules_python//python:defs.bzl", "py_library")
load("//third-party/bazel/toolchains:defs.bzl", "CROSS_PYTHON_INCOMPATIBLE")
exports_files(
["BUILD.bazel"],
)
py_library(
name = "everest-testing",
srcs = glob(["src/**/*.py"]),
imports = ["src"],
visibility = ["//visibility:public"],
target_compatible_with = CROSS_PYTHON_INCOMPATIBLE,
deps = [
requirement("pytest"),
requirement("pytest-asyncio"),
requirement("python-dateutil"),
requirement("paho-mqtt"),
requirement("pyftpdlib"),
requirement("ocpp"),
requirement("websockets"),
requirement("pyOpenSSL"),
requirement("pyyaml"),
],
)