Skip to content

Try to install opp_env, and show test output #2

Try to install opp_env, and show test output

Try to install opp_env, and show test output #2

Workflow file for this run

name: Run smoke tests
on:
push:
branches:
- topic/smoketest
jobs:
test:
name: Smoke tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install locally
run: python3 -m pip install -e .
- name: Run smoke tests
working-directory: tests
run: ./smoketest_nixless
- name: Show output
run: |
echo "::group::Output"
cat tests/out.txt
echo "::endgroup::"
echo "::group::Cumulative output"
cat tests/cumulative_out.txt
echo "::endgroup::"