Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
datadrivendiscovery
primitives
Commits
dd6d7df5
Commit
dd6d7df5
authored
Feb 12, 2020
by
Sujen
Browse files
Merge branch 'fix-upstream-check' into 'master'
Fix upstream check See merge request
!194
parents
15b53235
28cafc77
Pipeline
#117100451
passed with stages
in 89 minutes and 3 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
run_validation.py
run_validation.py
+1
-1
No files found.
run_validation.py
View file @
dd6d7df5
...
...
@@ -1044,7 +1044,7 @@ else:
if
arguments
.
devel
:
files_changed
=
filter_for_devel
(
files_changed
)
if
any
(
not
os
.
path
.
relpath
(
file_path
)
.
startswith
(
'v'
)
for
file_path
in
file_changed
):
if
any
(
not
(
file_path
==
'.gitattributes'
or
file_path
.
startswith
(
'v'
)
)
for
file_path
in
file
s
_changed
):
raise
ValidationError
(
"There are non-primitive file changes between your branch and upstream. If you have not authored those changes, you need to update your branch with upstream."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment