Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Use pip install instead of setup.py #101

Merged
merged 1 commit into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci_support/run_docker_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pip install -r /io/doc/requirements.txt --break-system-packages

cp -r /io/* /tmp
cd /tmp
python setup.py install --user
pip install . --user --break-system-packages
~/.local/bin/mo2fmu -h
~/.local/bin/mo2fmu ./otfmi/example/file/deviation.mo ./otfmi/example/file/fmu/linux64/deviation.fmu
pytest test -s
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
shell: bash -l {0}
run: |
conda install -y pyfmi openturns pytest jinja2 omcompiler
python setup.py install
pip install .
mo2fmu -h
mo2fmu ./otfmi/example/file/deviation.mo ./otfmi/example/file/fmu/linux64/deviation.fmu
pytest test -s
Expand All @@ -53,7 +53,7 @@ jobs:
$env:PATH += ";C:\Program Files\OpenModelica1.21.0-64bit\bin"
omc --version
conda install -y pyfmi openturns pytest jinja2
python setup.py install
pip install .
mo2fmu -h
pytest test -s

Loading