Feature #191: Add global footer component for enhanced navigation#195
Open
deepakstwt wants to merge 1 commit into
Open
Feature #191: Add global footer component for enhanced navigation#195deepakstwt wants to merge 1 commit into
deepakstwt wants to merge 1 commit into
Travis CI / Travis CI - Pull Request
required action
Jan 9, 2026 in 51s
Build Errored
The build errored. This is a change from the previous build, which passed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #195 Feature #191: Add global footer component for enhanced navigation.
Any changes that have been made to the develop branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Python |
| Operating System | Linux (Focal) |
| Python Version | 2.7 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "focal",
"sudo": true,
"python": [
"2.7"
],
"services": [
"docker"
],
"addons": {
"postgresql": "9.4"
},
"before_cache": [
"rm -f $HOME/.cache/pip/log/debug.log"
],
"before_script": [
"psql -c \"CREATE DATABASE cloudcv\" -U postgres"
],
"before_install": [
"pip install -U pip",
"nvm install 6.0.0",
"nvm use 6.0.0",
"npm install -g yarn@0.23.4"
],
"install": [
"pip install -r requirements/dev.txt",
"cd frontend && yarn install",
"cd ../"
],
"script": [
"flake8 ./",
"py.test --cov . --cov-config .coveragerc",
"cd frontend && npm run lint:build",
"npm run test",
"npm run build:alias"
],
"after_success": [
"cd ../",
"coveralls --rcfile=.coveragerc",
"pip install awscli",
"bash scripts/stage.sh",
"bash scripts/deploy.sh"
],
"cache": {
"directories": [
"frontend/node_modules",
"$HOME/.cache/pip"
]
}
}
Loading