You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by mc...@apache.org on 2021/09/07 09:18:27 UTC

[cassandra-dtest] branch trunk updated: Remove CircleCI folder from dtest

This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git


The following commit(s) were added to refs/heads/trunk by this push:
     new efb82f5  Remove CircleCI folder from dtest
efb82f5 is described below

commit efb82f574cd99ea598713035bbc9a95e568d73ce
Author: Ruslan Fomkin <ru...@datastax.com>
AuthorDate: Tue Sep 7 09:42:49 2021 +0200

    Remove CircleCI folder from dtest
    
    CircleCI configuration in this repo is never used and, thus, is not
    up-to-date, which is confusing. This commit removes it. Configuration
    from the main Cassandra repo is used for running dtest in CircleCI.
    
     patch by Ruslan Fomkin; reviewed by Brandon Williams, Michael Semb Wever for CASSANDRA-16853
---
 .circleci/config.yml | 29 -----------------------------
 .gitignore           |  1 +
 2 files changed, 1 insertion(+), 29 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644
index 708a8f1..0000000
--- a/.circleci/config.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-version: 2
-jobs:
-   build:
-     docker:
-       - image: circleci/python:2.7
-     steps:
-       - checkout
-       - run:
-          name: Install System Dependencies
-          command: |
-              sudo apt-get update -qq
-              sudo pip install pycodestyle==2.3.1 flake8
-              sudo pip check
-       - run:
-          name: lint
-          command: |
-            # we want pyflakes to check all files for unused imports only
-            # we use flake8 because it allows us to ignore other warnings
-            # exclude the thrift directories - they contain auto-generated code
-            flake8 --ignore=E501,F811,F812,F822,F823,F831,F841,N8,C9 --exclude=thrift_bindings,cassandra-thrift .
-            git remote add apache git://github.com/apache/cassandra-dtest.git
-            git fetch apache # fetch master for the next diff
-            # feed changed lines with no context around them to pycodestyle
-            # I know we don't enforce line length but if you introduce
-            # 200-char lines you are doing something terribly wrong.
-            # lint all files for everything but line length errors
-            git diff apache/master...HEAD -U0 | pycodestyle --ignore=E501 --diff
-            # lint all files except json_test.py for line length errors
-            git diff apache/master...HEAD -U0 | pycodestyle --diff --exclude='json_test.py' --exclude='meta_tests/assertion_test.py' --max-line-length=200
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 5132139..2b6fb27 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@ last_test_dir
 upgrade
 html/
 doxygen/doxypy-0.4.2/
+.pytest_cache/

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org