Skip to content

Commit

Permalink
Fix docker build following relocation of requirements_test.txt
Browse files Browse the repository at this point in the history
missed this in #1046
  • Loading branch information
bdraco committed Feb 2, 2025
1 parent 3523a0b commit 8b95a6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main
paths:
- Dockerfile
- requirements_test.txt
- requirements/test.txt
- .github/workflows/docker.yml

permissions:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ USER esphome

WORKDIR /aioesphomeapi

COPY requirements_test.txt ./
COPY requirements/test.txt ./

RUN pip3 install -r requirements_test.txt
RUN pip3 install -r requirements/test.txt

CMD ["script/gen-protoc"]

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ For development is recommended to use a Python virtual environment (``venv``).
$ source bin/activate
# Install aioesphomeapi and development depenencies
$ pip3 install -e .
$ pip3 install -r requirements_test.txt
$ pip3 install -r requirements/test.txt
# Run linters & test
$ script/lint
Expand Down

0 comments on commit 8b95a6b

Please sign in to comment.