From b3afecc21f72cc576a54500dd9027b09941b829b Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Sun, 24 Jan 2021 22:31:56 +0000 Subject: [PATCH] Remove not working variables --- .github/workflows/django.yml | 6 ------ PyRIGS/tests/base.py | 2 -- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index cb6d284f..eec2444d 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -23,12 +23,6 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Force Locale - run: | - export TZ=Europe/London - export LANG=en_GB.UTF-8 - export LC_ALL=en_GB.UTF-8 - export LANGUAGE=en_GB.UTF-8 - name: Setup Chromedriver run: | wget https://chromedriver.storage.googleapis.com/2.36/chromedriver_linux64.zip diff --git a/PyRIGS/tests/base.py b/PyRIGS/tests/base.py index 6fa5a0b3..a0d4866d 100644 --- a/PyRIGS/tests/base.py +++ b/PyRIGS/tests/base.py @@ -24,8 +24,6 @@ def create_browser(): # No caching, please and thank you options.add_argument("--aggressive-cache-discard") options.add_argument("--disk-cache-size=0") - # God Save The Queen - options.add_argument("--lang=en_GB") options.add_argument("--headless") if settings.CI: options.add_argument("--no-sandbox")