Skip to content

Commit

Permalink
Do not run clippy on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanceras committed Jun 6, 2019
1 parent 00169b2 commit 1d3da18
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 0 additions & 4 deletions .gitlab-ci.yml
Expand Up @@ -9,7 +9,6 @@ rust-latest:
- postgres:latest

before_script:
- rustup component add clippy
- ./gather-prerequisites.sh
- ./install-postgresql-client.sh
- ./rename-database-host.sh
Expand All @@ -18,7 +17,6 @@ rust-latest:
- cargo test --features "with-postgres with-sqlite"
- cargo test --features "with-postgres"
- cargo test --features "with-sqlite"
- ./run_clippy.sh

rust-nightly:
stage: build
Expand All @@ -27,7 +25,6 @@ rust-nightly:
- postgres:latest

before_script:
- rustup component add clippy
- ./gather-prerequisites.sh
- ./install-postgresql-client.sh
- ./rename-database-host.sh
Expand All @@ -37,4 +34,3 @@ rust-nightly:
- cargo test --features "with-postgres with-sqlite"
- cargo test --features "with-postgres"
- cargo test --features "with-sqlite"
- ./run_clippy.sh
4 changes: 1 addition & 3 deletions .travis.yml
Expand Up @@ -17,14 +17,12 @@ services:
- postgresql

before_script:
- rustup component add clippy
- ./gather-prerequisites.sh
- ./execute-data-import.sh



script:
- cargo test --features "with-postgres with-sqlite"
- cargo test --features "with-postgres"
- cargo test --features "with-sqlite"
- ./run_clippy.sh

0 comments on commit 1d3da18

Please sign in to comment.