All Questions
4 questions
1
vote
1
answer
2k
views
UnicodeEncodeError: 'latin-1' codec can't encode character '\u201c' in position 0: ordinal not in range (256) [duplicate]
I have a script that runs just fine on the local but fails with a UnicodeEncodeError message on a gitlab runner.
Actual error message: UnicodeEncodeError: 'latin-1' codec can't encode character '\...
0
votes
1
answer
6k
views
Gitlab Job variable to use in python code
I am trying to create a pipeline and have defined some variable in my gitlab job which will be used by python script to populate results.
Is there any way I can call/define those variable in my python ...
0
votes
1
answer
2k
views
Python subprocess check_output FileNotFoundError: [Errno 2] No such file or directory
I wrote a little python script to build and test my docker images of that project. The script runs well locally, but fails remotely during check_output.
build.py
print(check_output(["which", "...
0
votes
1
answer
3k
views
Impossible to install python3 PyQt5 module with pip3 in Gitlab CI
I am part of a Gitlab python3 project where we are trying to install continuous integration thanks to the file .gitlab-ci.yml.
I am trying to install python3 and all the modules that we need, in ...