diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 56c889f..0000000 --- a/.drone.yml +++ /dev/null @@ -1,117 +0,0 @@ -kind: pipeline -type: docker -name: python310 - -steps: -- name: setup - image: postgres:15-alpine - environment: - PGPASSWORD: postgres - commands: - - id - - psql --version - - sleep 5 - - pg_isready -h database -U postgres -d dspacestatistics - - createuser -h database -U postgres dspacestatistics - - psql -h database -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'" - - psql -h database -U postgres -d dspacestatistics < tests/dspacestatistics.sql - -- name: test - image: python:3.10-slim - environment: - PGPASSWORD: dspacestatistics - DATABASE_HOST: database - commands: - - id - - python -V - - apt update && apt install -y gcc git libpq-dev - - pip install -r requirements-dev.txt - - pytest - -services: -- name: database - image: postgres:15-alpine - environment: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_DB: dspacestatistics - ---- -kind: pipeline -type: docker -name: python39 - -steps: -- name: setup - image: postgres:15-alpine - environment: - PGPASSWORD: postgres - commands: - - id - - psql --version - - sleep 5 - - pg_isready -h database -U postgres -d dspacestatistics - - createuser -h database -U postgres dspacestatistics - - psql -h database -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'" - - psql -h database -U postgres -d dspacestatistics < tests/dspacestatistics.sql - -- name: test - image: python:3.9-slim - environment: - PGPASSWORD: dspacestatistics - DATABASE_HOST: database - commands: - - id - - python -V - - apt update && apt install -y gcc git libpq-dev - - pip install -r requirements-dev.txt - - pytest - -services: -- name: database - image: postgres:15-alpine - environment: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_DB: dspacestatistics - ---- -kind: pipeline -type: docker -name: python38 - -steps: -- name: database - image: postgres:15-alpine - detach: true - environment: - POSTGRES_USER: postgres - POSTGRES_PASSWORD: postgres - POSTGRES_DB: dspacestatistics - -- name: setup - image: postgres:15-alpine - environment: - PGPASSWORD: postgres - commands: - - id - - psql --version - - sleep 5 - - pg_isready -h database -U postgres -d dspacestatistics - - createuser -h database -U postgres dspacestatistics - - psql -h database -U postgres -c "ALTER USER dspacestatistics WITH PASSWORD 'dspacestatistics'" - - psql -h database -U postgres -d dspacestatistics < tests/dspacestatistics.sql - -- name: test - image: python:3.8-slim - environment: - PGPASSWORD: dspacestatistics - DATABASE_HOST: database - commands: - - id - - python -V - - apt update && apt install -y gcc git libpq-dev - - pip install -r requirements-dev.txt - - pytest - -# vim: ts=2 sw=2 et diff --git a/CHANGELOG.md b/CHANGELOG.md index 65c4345..162297c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Updated - Falcon 3.1.1 +### Removed +- Drone CI + ## 1.4.3 - 2022-03-26 ### Updated - Update dependencies with `poetry update` diff --git a/README.md b/README.md index d53066f..d0fb3d0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@

DSpace Statistics API

-Build Status Build and Test Code style: black