Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
include:
- stage: test
install:
- pip install --user pipenv
- pip install pipenv
- pipenv --python 3.6
- pipenv install --dev
script:
Expand Down
2 changes: 1 addition & 1 deletion operations_api/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from flask import Flask, Blueprint

from operations_api.v1.model import ns as v1_model_namespace
from operations_api.v1.model.endpoints import ns as v1_model_namespace
from operations_api.restplus import api
from operations_api.database import db
from operations_api.config import settings
Expand Down