From 6d8b3ca190992fd1e83aaae13ef5faf71dbf4fef Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 28 Nov 2020 04:29:06 -0500 Subject: [PATCH] add build step to github actions tests --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9470f395..6db5515b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,8 +70,9 @@ jobs: - name: Install pip dependencies run: | - python -m pip install pytest bottle wheel setuptools - python -m pip install -e . + python -m pip install --upgrade pip setuptools wheel pytest bottle + ./bin/build_pip.sh + python -m pip install . - name: Get npm cache dir id: npm-cache