Skip to content

Commit

Permalink
changed invocation of check_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Soellinger authored and Aaron Soellinger committed May 4, 2020
1 parent c7c3d93 commit c1c3f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pr_version=$(python3 -c "import mplfinance; print(mplfinance.__version__)")
git checkout master
in_version=$(python3 -c "import mplfinance; print(mplfinance.__version__)")
echo "PR: ${pr_version}; Incumbent: ${in_version}"
result=$(python3 -m mplfinance.check_version --pr ${pr_version} --in ${in_version})
result=$(python3 scripts/check_version.py --pr ${pr_version} --in ${in_version})
if [ "${result}" != "VersionCheck:pr>master" ]
then
# version in PR doesn't pass the test
Expand Down

0 comments on commit c1c3f5c

Please sign in to comment.