Hello,
I want to run selenium tests on circleci and therefore I have to start my backend, which is django app and frontend (angular app served by gulp). The problem is that after starting them I get “Step was canceled” message. I’ve checked other threads but haven’t find any fix. Is there any workaround how to fix it?
docker:
- image: circleci/python:3.6-node-browsers
.
.
- run:
name: Run backend
command: |
# Run backend
cd project
python3 manage.py migrate --fake-initial app
python3 manage.py runserver
background: true
for example, when starting django webserver it shows this
python3 manage.py runserver
Operations to perform:
Apply all migrations: app
Running migrations:
No migrations to apply.
Watching for file changes with StatReloader
Performing system checks...
System check identified no issues (0 silenced).
July 04, 2019 - 10:25:52
Django version 2.2.3, using settings 'settings.django'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Step was canceled
Hi! were you able to resolve the issue? I want to run “python manage.py test” after running django server(python manage.py runserver) for selenium headless webdriver. facing the same issue.