From b3393544c065e2ea1d2a323579158e4985abde96 Mon Sep 17 00:00:00 2001 From: Michal Bocek Date: Wed, 19 Oct 2022 15:40:02 +0000 Subject: [PATCH] Remove unused .env file (#634) --- .env.example | 28 ---------------------------- .gitignore | 2 -- Makefile | 3 --- 3 files changed, 33 deletions(-) delete mode 100644 .env.example diff --git a/.env.example b/.env.example deleted file mode 100644 index d2e2d652df..0000000000 --- a/.env.example +++ /dev/null @@ -1,28 +0,0 @@ -# General - # set integration tests logger level to DEBUG if True - # otherwise INFO -DEBUG=True - -# RHSM (Red Hat Subscription Manager related secrets) -RHSM_POOL= -RHSM_PASSWORD= -RHSM_USERNAME= -RHSM_SERVER_URL= -RHSM_KEY= -RHSM_ORG= -SATELLITE_KEY= -SATELLITE_ORG= - -# Ansible related secrets - # options are True|False. if True, then the rpm will - # be built locally using make rpms command -ANSIBLE_BUILD_RPM=True - # where to setup rpms (available options: local, url) - # local - copies the rpms, which were built - # locally (build_rpm = True) - # url - installs rpm from the provided urls - # (see rpm_url_el7 and rpm_url_el8 vars) -ANSIBLE_RPM_PROVIDER=local - # rpm urls in case ANSIBLE_RPM_PROVIDER is url -ANSIBLE_RPM_URL_EL7= -ANSIBLE_RPM_URL_EL8= diff --git a/.gitignore b/.gitignore index 77aa44f45a..d18e9537f8 100644 --- a/.gitignore +++ b/.gitignore @@ -12,9 +12,7 @@ system_tests/vmdefs/centos*/.vagrant/ .venv/* .build-images .install -.images .pre-commit -.env .rpms/* .srpms/* .idea/ diff --git a/Makefile b/Makefile index 605d42eb97..f9538e60ec 100644 --- a/Makefile +++ b/Makefile @@ -68,9 +68,6 @@ install: .install .build-images .env .pre-commit $(PRE_COMMIT) install --install-hooks touch $@ -.env: - cp .env.example .env - tests-locally: install . $(VENV)/bin/activate; pytest $(PYTEST_ARGS)