You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/02/29 11:55:45 UTC

[airflow-on-k8s-operator] branch kaxil-patch-1 created (now bb74188)

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

kaxilnaik pushed a change to branch kaxil-patch-1
in repository https://gitbox.apache.org/repos/asf/airflow-on-k8s-operator.git.


      at bb74188  Create .travis.yml

This branch includes the following new commits:

     new bb74188  Create .travis.yml

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[airflow-on-k8s-operator] 01/01: Create .travis.yml

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch kaxil-patch-1
in repository https://gitbox.apache.org/repos/asf/airflow-on-k8s-operator.git

commit bb741886256dae854adaceb1b0212f6913a90e65
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sat Feb 29 11:55:37 2020 +0000

    Create .travis.yml
---
 .travis.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..bd854c5
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+---
+dist: bionic
+language: python
+os: linux
+python: "3.6"
+stages:
+  - pre-test
+services:
+  - docker
+jobs:
+  include:
+    - name: "Static checks"
+      stage: pre-test
+      script: ./scripts/ci/ci_run_all_static_checks.sh
+      env: >-
+        PYTHON_VERSION=3.6
+        AIRFLOW_MOUNT_SOURCE_DIR_FOR_STATIC_CHECKS="true"
+        SKIP=pylint-tests