Commit e4138940 authored by Jonathan Maw's avatar Jonathan Maw
Browse files

Test adding a wsl test

parent 7dfb85b3
Loading
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -127,6 +127,20 @@ lint:
  except:
  - schedules

tests-wsl:
  stage: test
  variables:
    LC_ALL: C.UTF-8
    LANG: C.UTF-8
  tags:
  - wsl
  before_script:
  - mount
  - df -h

  script:
  - tox

# Automatically build documentation for every commit, we want to know
# if building documentation fails even if we're not deploying it.
docs:
+1 −0
Original line number Diff line number Diff line
@@ -57,6 +57,7 @@ def generate_file_types(path):
    clean()

    s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
    print("*** Binding unix socket to {}".format(path))
    s.bind(path)
    yield
    clean()