Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get all user list , Job Application , Get Job status, Job Application Acceptance, Reject API #79

Closed
wants to merge 16 commits into from

View Completed Job History Pet Sitter

d3cd6ed
Select commit
Loading
Failed to load commit list.
Closed

Get all user list , Job Application , Get Job status, Job Application Acceptance, Reject API #79

View Completed Job History Pet Sitter
d3cd6ed
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Nov 29, 2023 in 11m 8s

Build Errored

The build errored, just like the previous build.

Details

This is a normal build for the get-user branch. You should be able to reproduce it by checking out the branch locally.

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 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "python": [
    "3.8"
  ],
  "jobs": {
    "include": [
      {
        "name": "test, check format, check lint and report coverage",
        "install": [
          "cd furbaby && pip install -r requirements.txt",
          "export GIT_COMMIT_SHORT_HASH=$(git rev-parse --short HEAD)",
          "export GIT_COMMIT_HASH=$(git rev-parse HEAD)",
          "echo $GIT_COMMIT_HASH",
          "echo $GIT_COMMIT_SHORT_HASH",
          "export AWS_SECRET_ACCESS_KEY=\"$AWS_ACCESS_SECRET_KEY\"",
          "export AWS_BUCKET_NAME=\"elasticbeanstalk-us-east-1-994011800090\""
        ],
        "script": [
          "printenv > ./furbaby/.env",
          "ls -lah ./furbaby",
          "git add .",
          "git commit -m \"add latest .env file\"",
          "black --check .",
          "pylint **/*.py --exit-zero",
          "coverage run --source=api manage.py test"
        ],
        "after_script": [
          "coveralls"
        ],
        "deploy": [
          {
            "provider": "elasticbeanstalk",
            "access_key_id": "$AWS_ACCESS_KEY_ID",
            "secret_access_key": "$AWS_ACCESS_SECRET_KEY",
            "skip_cleanup": true,
            "region": "us-east-1",
            "app": "project-team-1-furbaby",
            "env": "staging",
            "bucket": "$AWS_BUCKET_NAME",
            "on": {
              "branch": [
                "develop"
              ]
            }
          },
          {
            "provider": "elasticbeanstalk",
            "access_key_id": "$AWS_ACCESS_KEY_ID",
            "secret_access_key": "$AWS_ACCESS_SECRET_KEY",
            "region": "us-east-1",
            "app": "project-team-1-furbaby",
            "env": "production",
            "bucket": "$AWS_BUCKET_NAME",
            "skip_cleanup": true,
            "on": {
              "branch": [
                "master"
              ]
            }
          }
        ]
      }
    ]
  }
}