Skip to content

Commit 1fd697c

Browse files
committed
set a workflow
1 parent 66e4622 commit 1fd697c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/github-actions-cron-util-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
- cron: "0 8 * * SUN"
55
push:
66
paths:
7-
- 'flow/util/'
8-
- 'flow/util/test'
7+
- 'flow/util/**.py'
8+
- 'flow/util/test/**.py'
99
pull_request:
1010
paths:
11-
- 'flow/util/'
12-
- 'flow/util/test'
11+
- 'flow/util/**.py'
12+
- 'flow/util/test/**.py'
1313
# Allows you to run this workflow manually from the Actions tab
1414
workflow_dispatch:
1515

flow/util/test/test_genElapsedTime.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
os.chdir(os.path.dirname(os.path.abspath(__file__)))
1919

2020
class TestElapsedTime(unittest.TestCase):
21-
2221
def setUp(self):
2322
self.tmp_dir = tempfile.TemporaryDirectory()
2423
self.log_file = os.path.join(self.tmp_dir.name, "1_test.log")

0 commit comments

Comments
 (0)