Skip to content
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
12 changes: 11 additions & 1 deletion .github/workflows/push_event_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,20 @@ jobs:

- name : Run tests
run : |
python -m unittest tests/integration/test-solvers.py
python -m unittest discover -s tests/integration
ls
cd $HOME
ls
- name : Upload test artifacts
uses: actions/upload-artifact@v4
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: unittest-artifacts
path: test-reports
- uses: test-summary/action@v2
with:
paths: "test-reports/TEST-*.xml"

#- name: Push to main
# if: success()
Expand Down
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,24 @@ Please start the course [here](index.ipynb).
* Installation script in binder/postBuild

## Installation:
´´´

1) Install via pip
```
pip install ug4py-base
´´´
```

´´´
2) Clone repo:
```
git clone https://github.com/UG4/py-course-modsim.git
´´´
```

3) Run examples, e.g.,:
```
cd py-course-modsim/content/tutorial-fem
python tutorial-fem-01.py
```



## Note
It is a port of the sibling [Lua course](http://github.com/UG4/modsim-course-lua).
Loading