Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated .gitlab-ci.yml and solved a bug while creating temporary files
  • Loading branch information
Javinator9889 committed May 16, 2020
1 parent da67100 commit e0551da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitlab-ci.yml
Expand Up @@ -19,11 +19,12 @@ cache:
before_script:
- python -V # Print out python version for debugging
- apt update
- apt install -y libchromaprint-tools ffmpeg libpq-dev
- apt install -y --no-install-recommeds libchromaprint-tools ffmpeg libpq-dev git
- git clone https://github.com/beetbox/pyacoustid.git && cd pyacoustid
- python setup.py install
- cd .. && rm -rf pyacoustid/
- pip install -r YouTubeMDBot/requirements.txt
- mkdir -p /run/user/$(id -u $(whoami))

test:pylint:
script:
Expand Down
2 changes: 1 addition & 1 deletion YouTubeMDBot/utils/temporary_dir.py
Expand Up @@ -33,7 +33,7 @@ def __new__(cls, *args, **kwargs):

def create_new_file(self,
mode: str = "w+b",
buffering=None,
buffering=-1,
encoding=None,
newline=None,
suffix=None,
Expand Down

0 comments on commit e0551da

Please sign in to comment.