forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Try running tests with space in root path #14113
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
66874f6
Add test with a space (only works on flake)
rchiodo 6a87365
Push to insiders.yml only
rchiodo e0f68c0
Remove test that doesn't really do anything
rchiodo 98134f3
REmove unused bits
rchiodo eb7e1db
Change path to have unicode too
rchiodo 3cc5127
Get test to run
rchiodo 315ba13
Set root path differently
rchiodo 3e82acc
Valid dir
rchiodo 2cb4885
A different way
rchiodo d66ec81
Another way
rchiodo 94a0d04
Try creating the directory first
rchiodo 1716099
Another try
rchiodo b080db9
Only one env
rchiodo 3c4bc0a
Pass parameters correctly
rchiodo 3e9a19e
Try without unicode
rchiodo 70b7c31
Set working directory directly on xvfb actions
rchiodo 46584e9
Working-directory not workingDirectory
rchiodo 7fd5715
Cached ts files output
rchiodo b0be9dc
Merge remote-tracking branch 'origin/main' into rchiodo/test_with_space
rchiodo 47c6c9c
Remove test with space branch for insiders
rchiodo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the benefit of having a separate
'./path with spaces'
env variable, instead of using'path with spaces'
everywhere?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So I don't mess up with the name. Just a variable replacement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we want to do some Unicode path and spaces, this might help?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use
env.special-working-directory-relative
everywhere, instead of havingenv.special-working-directory
andenv.special-working-directory-relative
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cause they're different? I wasn't sure how to concat a string in the yaml file so I just made to variables.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding something with Unicode like Karthik suggested is probably a good idea.