Skip to content

Commit

Permalink
test for 6830 (1) (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMiao1 authored Aug 15, 2023
1 parent 292ec00 commit fb193df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/css_style.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
from collections import OrderedDict
import time

errors = 0

Expand Down Expand Up @@ -55,6 +56,7 @@ def processFile(path):


def searchDirectory(path="./"):
time.sleep(1)
for item in os.listdir(path):
if os.path.isdir(path + item):
searchDirectory(path + item + "/")
Expand All @@ -65,4 +67,8 @@ def searchDirectory(path="./"):
searchDirectory()

print(f"{errors} erroneous files found.")

print("test delay")

time.sleep(600)
exit(0 if not errors else 1)
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Test
on:
push:
branches:
- master
- "**"
pull_request:
branches:
- master
- "**"

jobs:
run-linters:
Expand Down

0 comments on commit fb193df

Please sign in to comment.