Commit a8aebc53 authored by Thomas Boni's avatar Thomas Boni
Browse files

Resolve "Wrong job name in doc example"

parent 887db465
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -364,8 +364,8 @@ follow these steps:
   that will run it on your project, you can mount the repository folder inside
   the container:
      ```shell
      # Example if your job will use node:15.7-buster as Docker image docker run -v
      /path/to/your/repo:/mnt --entrypoint "/bin/sh" -it node:15.7-buster
      # Example if your job will use node:15.7-buster as Docker image
      docker run -v /path/to/your/repo:/mnt --entrypoint "/bin/sh" -it node:15.7-buster
      ```

2. Create your job configuration in a repository and test it locally using
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ Allow you to launch unit tests from your python project. The default variables w
If you want for example to change your test framework from pytest to nosetests, you just have to override the `TEST_FRAMEWORK` variable as such in your `gitlab-ci.yml`, after including the job:

```yaml
python_tests:
python_test:
  variables:
    TEST_FRAMEWORK: "nosetests"
```