Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Merge requests
!17
update to v0.4.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
update to v0.4.0
develop
into
master
Overview
0
Commits
47
Pipelines
1
Changes
23
Merged
Ghost User
requested to merge
develop
into
master
5 years ago
Overview
0
Commits
47
Pipelines
1
Changes
23
Expand
finished pre-processing steps, implemented new storage for namespace specific attributes
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
d70a6b27
47 commits,
5 years ago
23 files
+
1339
−
202
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
23
Search (e.g. *.vue) (Ctrl+P)
CI/run_pytest.sh
+
6
−
6
Options
@@ -6,14 +6,14 @@ python3 -m pytest --html=report.html --self-contained-html test/ | tee test_resu
IS_FAILED
=
$?
# move html test report
mkdir test
/
mkdir
test
_results
/
BRANCH_NAME
=
$(
echo
-e
"
${
CI_COMMIT_REF_NAME
////_
}
"
)
mkdir test
/
${
BRANCH_NAME
}
mkdir test
/recent
cp
report.html
test
/
${
BRANCH_NAME
}
/.
cp
report.html
test
/recent/.
mkdir
test
_results
/
${
BRANCH_NAME
}
mkdir
test
_results
/recent
cp
report.html test
_results
/
${
BRANCH_NAME
}
/.
cp
report.html test
_results
/recent/.
if
[[
"
${
CI_COMMIT_REF_NAME
}
"
=
"master"
]]
;
then
cp
-r
report.html
test
/.
cp
-r
report.html test
_results
/.
fi
# exit 0 if no tests implemented
Loading