Skip to content

Commit b77dac4

Browse files
committed
install extras in autorelease install
1 parent a2a10aa commit b77dac4

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/autorelease-prep.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# File vencdored from Autorelease; specific version information should be in
2-
# the INSTALL_AUTORELEASE variable in autorelease-default-env.sh
31
name: "Autorelease"
42
on:
53
pull_request:
@@ -53,9 +51,7 @@ jobs:
5351
python-version: "3.x"
5452
- run: | # TODO: move this to an action
5553
source ./.github/workflows/autorelease-default-env.sh
56-
if [ -f "./.autorelease/test-testpypi.sh" ]; then
57-
source ./.autorelease/test-testpypi.sh
58-
elif [ -f "autorelease-env.sh" ]; then
54+
if [ -f "autorelease-env.sh" ]; then
5955
cat autorelease-env.sh >> $GITHUB_ENV
6056
fi
6157
eval $INSTALL_AUTORELEASE

autorelease-env.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
INSTALL_AUTORELEASE="python -m pip install autorelease==0.2.3 nose"
1+
# include extra packages when installing autorelease
2+
INSTALL_AUTORELEASE="python -m pip install autorelease==0.2.3 nose sqlalchemy dill"
23
PACKAGE_IMPORT_NAME=paths_cli
3-
AUTORELEASE_TEST_TESTPYPI="python -m pip install sqlalchemy dill pytest && py.test --pyargs $PACKAGE_IMPORT_NAME"

0 commit comments

Comments
 (0)