Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

111 test2 #114

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/run-standard-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ name: Run Standard Tests
on:
workflow_dispatch:
pull_request:
paths: [src/**]
paths:
- '**CMakeLists.txt'
- src/**.h
- src/**.cpp
- src/**.java
- src/**.dd
- src/**.inc
- src/**.lex
- src/**.yac
- test/LearningTest/**
env:
KhiopsBatchMode: true
jobs:
Expand Down
4 changes: 2 additions & 2 deletions test/LearningTest/cmd/python/apply_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def apply_command_performance(work_dir):
dir_name = os.path.basename(work_dir)
root_name = os.path.basename(os.path.dirname(work_dir))
results_dir = os.path.join(work_dir, "results")
if os.path.isdir((results_dir)):
if os.path.isdir(results_dir):
test_pattern = "TestEvaluationReport.xls"
for file_name in os.listdir(results_dir):
if test_pattern in file_name:
Expand All @@ -389,7 +389,7 @@ def apply_command_performance_ref(work_dir):
dir_name = os.path.basename(work_dir)
root_name = os.path.basename(os.path.dirname(work_dir))
results_dir = os.path.join(work_dir, "results.ref")
if os.path.isdir((results_dir)):
if os.path.isdir(results_dir):
test_pattern = "TestEvaluationReport.xls"
for file_name in os.listdir(results_dir):
if test_pattern in file_name:
Expand Down
1 change: 0 additions & 1 deletion test/LearningTest/cmd/python/apply_command_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import apply_command
import test_khiops


if __name__ == "__main__":
all_commands, standard_command_number = apply_command.register_all_commands()

Expand Down
Loading
Loading