Fix get_loci() method of Surface, so it returns a list of points rather than a list of methods. #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Regular CI testing for parastell | |
on: | |
# allows us to run workflows manually | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- 'Dockerfile' | |
- '.github/workflows/docker_publish.yml' | |
- 'environment.yml' | |
jobs: | |
test-dependency-img: | |
runs-on: ubuntu-latest | |
container: ghcr.io/svalinn/parastell-ci | |
name: Perform CI Tests | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Populate environment and run tests | |
run: | | |
. /opt/etc/bashrc | |
sed -e "s/@SERVER@/${rlmSERVER}/" -e "s/@PASSWORD@/${rlmPASSWD}/" /opt/Coreform-Cubit-2023.11/bin/licenses/rlmcloud.in > /opt/Coreform-Cubit-2023.11/bin/licenses/rlmcloud.lic | |
export PYTHONPATH=${PYTHONPATH}:`pwd` | |
cd tests | |
pytest -v . | |
env: | |
rlmSERVER: ${{ secrets.RLMSERVER }} | |
rlmPASSWD: ${{ secrets.RLMPASSWORD }} |