Merge pull request #179 from RobertGawron/develop #89
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: Component Tests | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install pytest and run tests | |
run: | | |
sudo pip install pytest pytest-html && | |
cd ./ContinuousIntegration && | |
chmod +x ./run_component_tests.sh && ./run_component_tests.sh | |
- name: Archive component test results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: Report for BusinessLogic | |
path: Test/ComponentTest/BusinessLogic_Test_Report.html |