From 26cc1b12392cf37d89b68fc24467c846054c333c Mon Sep 17 00:00:00 2001 From: "Dave Musicant (home machine)" Date: Sun, 4 Dec 2022 09:14:40 -0600 Subject: [PATCH] trying a simple test --- .github/workflows/gitwatch.yml | 2 +- othertests/tryit.bats | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 othertests/tryit.bats diff --git a/.github/workflows/gitwatch.yml b/.github/workflows/gitwatch.yml index 4e85056..a549b3b 100644 --- a/.github/workflows/gitwatch.yml +++ b/.github/workflows/gitwatch.yml @@ -87,8 +87,8 @@ jobs: run: | git config --global user.email "test@email.com" git config --global user.name "test user" - bats -c tests #bats -rt tests + bats -rt othertests echo "Finished running tests" - name: Test step diff --git a/othertests/tryit.bats b/othertests/tryit.bats new file mode 100644 index 0000000..9f87599 --- /dev/null +++ b/othertests/tryit.bats @@ -0,0 +1,11 @@ +#!/usr/bin/env bats + +# This is a testscript using the bats testing framework: +# https://github.com/sstephenson/bats +# To run it, at a command prompt: +# bats testscript.bats + + +function commit_log_messages_working { #@test + echo "Test complete" +}