From bfdd352fd9063e3ee65d3063bff23e8d89995d1e Mon Sep 17 00:00:00 2001 From: Alex M <7845120+newAM@users.noreply.github.com> Date: Sun, 3 May 2020 15:05:30 -0700 Subject: [PATCH 1/2] Fix PWD capitalization in development setup. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b16211d2..64222894c 100644 --- a/README.md +++ b/README.md @@ -239,5 +239,5 @@ The following assumes you have a working installation of Docker. Set up the environment and run the tests on demand. ```shell -docker build . -t kasa && docker run -v $(PWD)/kasa/tests:/opt/python-kasa/kasa/tests kasa pytest +docker build . -t kasa && docker run -v $(pwd)/kasa/tests:/opt/python-kasa/kasa/tests kasa pytest ``` From 6c2cae37cfcdc32fdc8cc9b897a45a4b56f44668 Mon Sep 17 00:00:00 2001 From: Alex M <7845120+newAM@users.noreply.github.com> Date: Sun, 3 May 2020 15:21:17 -0700 Subject: [PATCH 2/2] Add setuptools and wheel to test requirements to fix piplines failure on OSX. --- requirements_test.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements_test.txt b/requirements_test.txt index 901116e33..6c9b7bd12 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -6,3 +6,5 @@ pytest-mock asyncclick voluptuous codecov +wheel +setuptools