Execute unit tests on ResInsight (#5698)

This commit is contained in:
Magne Sjaastad 2020-03-18 15:23:20 +01:00 committed by GitHub
parent d74e5fe5e8
commit 41fafb1eac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,6 +71,16 @@ jobs:
run: |
cd ApplicationCode/GrpcInterface/Python/rips
pytest --console
- name: Run Unit Tests Windows
if: contains( matrix.os, 'windows')
shell: bash
run: |
cmakebuild/ApplicationCode/Release/ResInsight --unittest
- name: Run Unit Tests Linux
if: "!contains( matrix.os, 'windows')"
shell: bash
run: |
cmakebuild/ApplicationCode/ResInsight --unittest
- name: Upload artifact
uses: actions/upload-artifact@v1
with: