Skip to content

Commit 181c49a

Browse files
committed
fix: Install dependencies in the release workflow
1 parent 0ea8bc0 commit 181c49a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/realease_pypi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip build setuptools twine
22+
pip install .
2223
2324
- name: Build and upload esp-idf-monitor ${{ github.event.release.tag_name }}
2425
env:

esp_idf_monitor/base/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
from .binlog import ArgFormatter # noqa: F401

test/host_test/test_monitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ class TestCStyleConversion(TestBaseClass):
606606
)
607607
def test_c_format(self, c_fmt, arg, pythonic_fmt, output):
608608
"""Test ArgFormatter.c_format with various format strings and arguments"""
609-
from esp_idf_monitor.base import ArgFormatter
609+
from esp_idf_monitor.base.binlog import ArgFormatter
610610
formatter = ArgFormatter()
611611
converted_format = formatter.convert_to_pythonic_format(formatter.c_format_regex.search(c_fmt))
612612
assert converted_format == pythonic_fmt, (

0 commit comments

Comments
 (0)