Skip to main content

failed to attach to the console of the process being terminated: The parameter is incorrect.

Created
Active
Viewed 62 times
0 replies
0

Hi,
In my gitlab CI setup, we are running the maven test cases using selenium.
I am using windows server as a self managed server to run the pipeline.
After
mvn test command, pipeline is in running state despite the test cases are passed.
I am getting this error
failed to attach to the console of the process being terminated: The parameter is incorrect.

nothing fancy in my pipeline, simple pipeline setup

this is how my gitlab-ci.yml file will look like

stages:
  - test

unit_test_selenium:
  stage: test
  
  tags:
   - cprsowindows
  script:
    - mvn -v
    - mvn clean
    - mvn compile
    - mvn test