Skip to content

Commit 9662f0d

Browse files
Bump super-linter/super-linter from 7.1.0 to 7.2.1 (#555)
Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: sharvil10 <sharvil.shah@intel.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sharvil10 <sharvil.shah@intel.com>
1 parent 0b6a6b0 commit 9662f0d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4040
with:
4141
fetch-depth: 0
42-
- uses: super-linter/super-linter/slim@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0
42+
- uses: super-linter/super-linter/slim@85f7611e0f7b53c8573cca84aa0ed4344f6f6a4d # v7.2.1
4343
env:
4444
GITHUB_ACTIONS_COMMAND_ARGS: '-ignore SC.*'
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

preset/deep-learning-tensorflow-gpu/demo/tensorflow-distributed/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,5 @@ Run the following command on the launcher nodes in a shell to launch the contain
197197
python tensorflow2_keras_mnist.py
198198
199199
> [!NOTE]
200+
200201
> That the number of processes spawned on each node will be dependent on the parameters specified with `horovodrun` command. You can modify the horovodrun command to your needs from the [documentation here](https://horovod.readthedocs.io/en/stable/running_include.html) and [here](https://horovod.readthedocs.io/en/stable/docker_include.html). For the workflow to work all nodes need to communicate with each other and be able to pass the MPI messages among all processes. This requires the correct environment setup based on the specific networking setup you have. [Intel® MPI documentation](https://www.intel.com/content/www/us/en/docs/mpi-library/developer-reference-linux/2021-10/environment-variable-reference.html) provides the necessary environment variables to control the communication between processes using MPI.

test-runner/test_runner.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,9 @@ def get_test_list(args: dict, tests_yaml: List[dict]):
206206
break
207207
summary.append([idx + 1, test.name, "PASS"])
208208
json_summary.append({"Group": test_group, "Test": test.name, "Status": "PASS"})
209-
json_summary_path = f"{args.logs_path}/{test_group.replace('/', '-')}-summary.json"
209+
JSON_SUMMARY_PATH = f"{args.logs_path}/{test_group.replace('/', '-')}-summary.json"
210210

211-
with open(json_summary_path, "w", encoding="utf-8") as file:
211+
with open(JSON_SUMMARY_PATH, "w", encoding="utf-8") as file:
212212
json.dump(json_summary, file, indent=4)
213213

214214
# Switch logging context back to the initial state
@@ -223,7 +223,7 @@ def get_test_list(args: dict, tests_yaml: List[dict]):
223223
docker.system.prune()
224224
logging.info("%d Images Removed", len(test_images))
225225
# DEBUG
226-
logging.info("Saved json summary file in: %s", json_summary_path)
226+
logging.info("Saved json summary file in: %s", JSON_SUMMARY_PATH)
227227
# Print Summary Table
228228
logging.info(
229229
"\n%s", tabulate(summary, headers=["#", "Test", "Status"], tablefmt="orgtbl")

0 commit comments

Comments
 (0)