| Conditions | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | from importlib import import_module |
||
| 21 | @pytest.mark.skip( |
||
| 22 | reason=( |
||
| 23 | "Needs `docker` and/or PostgreSQL and we're currently not making sure" |
||
| 24 | "\nthese are present on the continuous integration service(s) we use." |
||
| 25 | ) |
||
| 26 | ) |
||
| 27 | def test_airflow(): |
||
| 28 | """ Test that `egon-data airflow` correctly forwards to airflow. """ |
||
| 29 | runner = CliRunner() |
||
| 30 | with runner.isolated_filesystem(): |
||
| 31 | result = runner.invoke(egon_data, ["airflow", "--help"]) |
||
| 32 | assert result.output == "" |
||
| 33 | |||
| 45 |