Skip to content

Commit

Permalink
run new tests on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed Jan 18, 2024
1 parent 89f2668 commit 6fe134e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ jobs:
if: ${{ matrix.os != 'macos' }}
run: makim smoke-tests.containers

- name: Run smoke tests using different interpreters
run: makim smoke-tests.shell-app

- name: Run smoke tests using unittest makim file
run: makim smoke-tests.unittest

Expand Down
15 changes: 15 additions & 0 deletions .makim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,21 @@ groups:
cd ./tests/
makim $VERBOSE_FLAG --file $MAKIM_FILE containers.run
shell-app:
help: Test makim with working-directory for global no-path and its various combinations with group and target working-directory
args:
verbose-mode:
help: Run the all the tests in verbose mode
type: bool
action: store_true
env:
MAKIM_FILE: tests/.makim-interpreters.yaml
shell: bash
run: |
export VERBOSE_FLAG='{{ "--verbose" if args.verbose_mode else "" }}'
export MAKIM_FILE="$(pwd)/${MAKIM_FILE}"
makim $VERBOSE_FLAG --file $MAKIM_FILE main.all
unittest:
help: Test makim using a unittest makimfile
args:
Expand Down

0 comments on commit 6fe134e

Please sign in to comment.