Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
unitgrade_private
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
tuhe
unitgrade_private
Commits
25560d07
Commit
25560d07
authored
10 months ago
by
tuhe
Browse files
Options
Downloads
Patches
Plain Diff
Minor change not on pypi
parent
0b0740fe
Branches
master
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/unitgrade_private/pipelines/dtulearn.py
+5
-5
5 additions, 5 deletions
src/unitgrade_private/pipelines/dtulearn.py
with
5 additions
and
5 deletions
src/unitgrade_private/pipelines/dtulearn.py
+
5
−
5
View file @
25560d07
import
fnmatch
import
pickle
import
shutil
import
os
...
...
@@ -262,13 +263,12 @@ def docker_stagewise_evaluation(base_directory, Dockerfile=None, instructor_grad
# merge the files...
for
new_file
in
glob
.
glob
(
f
+
"
/**/*
"
,
recursive
=
True
):
# print(os.path.relpath(new_file, f))
if
os
.
path
.
isdir
(
new_file
):
continue
shutil
.
copy
(
new_file
,
dest
+
"
/
"
+
os
.
path
.
relpath
(
new_file
,
f
))
# Now remove blacklisted files to simplify it.
for
g
in
glob
.
glob
(
dest
+
"
/**/*
"
,
recursive
=
True
):
import
fnmatch
# if g.endswith(".py"):
# print(g)
if
len
([
ex
for
ex
in
stage0_excluded_files
if
fnmatch
.
fnmatch
(
g
,
ex
)])
>
0
:
# move to graveyeard of broken stuff.
...
...
@@ -540,7 +540,7 @@ def docker_stagewise_evaluation(base_directory, Dockerfile=None, instructor_grad
if
Dockerfile
is
None
:
images
=
download_docker_images
()
Dockerfile
=
images
[
'
unitgrade-docker
'
]
tag
=
compile_docker_image
(
Dockerfile
,
verbose
=
verbose
)
tag
=
compile_docker_image
(
Dockerfile
,
verbose
=
verbose
or
True
)
# This should create stage3. The directories that are ready for execution.
recombined_evaluations
=
{}
...
...
@@ -731,7 +731,7 @@ def docker_stagewise_evaluation(base_directory, Dockerfile=None, instructor_grad
dockname
=
tag
pycom
=
"
.
"
.
join
(
grade_script_relative
[:
-
3
].
split
(
"
/
"
))
+
"
--noprogress
"
pycom
=
"
python3.11 -m
"
+
pycom
pycom
=
f
"
{
conf
.
get
(
'
python
'
,
'
python3.11
'
)
}
-m
{
pycom
}
"
#
"python3.11 -m " + pycom
if
fix_user
:
user_cmd
=
'
--user
"
$(id -u):$(id -g)
"
'
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment