Skip to content

Commit a290534

Browse files
committed
fix: run tests if buildspec.yml has been modified
1 parent 7529a22 commit a290534

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

buildspec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ phases:
2121

2222
# run notebook test
2323
- |
24-
if has-matching-changes "src/*.py" "setup.py" "setup.cfg"; then
24+
if has-matching-changes "src/*.py" "setup.py" "setup.cfg" "buildspec.yml"; then
2525
echo "running notebook test"
2626
./tests/scripts/run-notebook-test.sh
2727
else
@@ -30,7 +30,7 @@ phases:
3030
3131
# run integration tests
3232
- |
33-
if has-matching-changes "tests/" "src/*.py" "setup.py" "setup.cfg"; then
33+
if has-matching-changes "tests/" "src/*.py" "setup.py" "setup.cfg" "buildspec.yml"; then
3434
IGNORE_COVERAGE=- tox -e py36,py27 -- tests/integ -n 24 --boxed --reruns 2
3535
else
3636
echo "skipping integration tests"

0 commit comments

Comments
 (0)