You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/03/12 00:44:10 UTC

[airflow] branch main updated: Move last chart test to `tests` (#22198)

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

jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 067e6b5  Move last chart test to `tests` (#22198)
067e6b5 is described below

commit 067e6b5f24b29f60bb82b299d3a784bdbdee80ce
Author: Jed Cunningham <66...@users.noreply.github.com>
AuthorDate: Fri Mar 11 17:43:00 2022 -0700

    Move last chart test to `tests` (#22198)
    
    This test was added after the rest of the tests were moved into `tests/charts`.
---
 {chart/tests => tests/charts}/test_pdb_webserver.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chart/tests/test_pdb_webserver.py b/tests/charts/test_pdb_webserver.py
similarity index 96%
rename from chart/tests/test_pdb_webserver.py
rename to tests/charts/test_pdb_webserver.py
index a25c3c5..aba212b 100644
--- a/chart/tests/test_pdb_webserver.py
+++ b/tests/charts/test_pdb_webserver.py
@@ -17,7 +17,7 @@
 
 import unittest
 
-from tests.helm_template_generator import render_chart
+from tests.charts.helm_template_generator import render_chart
 
 
 class WebserverPdbTest(unittest.TestCase):