Skip to content

Commit

Permalink
semaphore.tests.sh: Pull latest bear repo
Browse files Browse the repository at this point in the history
Fixing the semaphore script to pull the
latest repository of coala and coala bears

Fixes coala#649
  • Loading branch information
Sladyn committed Mar 3, 2019
1 parent 0aab343 commit 67b1f0a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .ci/semaphore.tests.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
set -e -x

pip install coala-bears
cp requirements.txt requirements.orig
printf '%s\n%s\n%s\n%s\n' \
"git+https://github.com/coala/coala" \
"git+https://github.com/coala/coala-bears" \
"$(cat test-requirements.txt)" \
"$(cat requirements.txt)" \
> requirements.txt
pip install -r requirements.txt
pip install -r test-requirements.txt
sed -i.bak '/bears = GitCommitBear/d' .coafile
coala --ci -V
python -m pytest
codecov

0 comments on commit 67b1f0a

Please sign in to comment.