Skip to content

Commit

Permalink
2.0.0 macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrdjan committed Nov 4, 2019
1 parent 50b87e2 commit 97aecc3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ci/utils/build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off
python setup.py bdist_wheel
pip install --upgrade --no-index --find-links=dist pyrfc
pytest -vv


17 changes: 17 additions & 0 deletions ci/utils/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
declare -a PYTHONS=("2715" "369" "374" "380")

rm -rf tests/__pycache__
rm -rf tests/stfc-mrfc/__pycache__

for PYTHON_VERSION in "${PYTHONS[@]}"
do

echo py$PYTHON_VERSION
pyenv activate py$PYTHON_VERSION
python setup.py bdist_wheel
pip install --upgrade --no-index --find-links=dist pyrfc
pytest -vv

done


0 comments on commit 97aecc3

Please sign in to comment.