Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions py/host-emulator/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
description = ""
authors = ["Nehal Patel <hereisnehal@gmail.com>"]
readme = "README.md"
packages = [{include = "host_emulator", from = "src"}]

[tool.poetry.dependencies]
python = "^3.11"
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions py/host-emulator/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import pathlib
import subprocess

from host_emulator import DeviceEmulator
from pytest import fixture

from src import DeviceEmulator


def pytest_addoption(parser):
parser.addoption(
Expand Down
2 changes: 1 addition & 1 deletion py/host-emulator/tests/test_blinky.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from time import sleep

from src import Pin
from host_emulator import Pin

pin_stats = {}

Expand Down