From 2dd46558f0b2cfca97e44cb162d0914176dbde33 Mon Sep 17 00:00:00 2001 From: Aidan Hilt <11202897+AidanHilt@users.noreply.github.com> Date: Sun, 10 Mar 2024 22:47:52 -0400 Subject: [PATCH] Feat/build tooling (#59) * Blah blah * Made atils not fail if there is no kubernetes configuration available * Did a bunch * Added the dockerfile at its new, lower user * Some stuff * This should be fine * Adding our first CI workflow * You'll see * Didn't get it all * Got the delete * Adding docker login to actions * Let's see this build * Getting our CI right * Fixing our workflow * Bumping version to test our CI * Think this is right? * Grabbed the wrong thing * Buncha stuff * Alright, think this will run * That was silly * Here we go * We're almost there * Wrong order * Who knows * Can't use absolute paths in our CI env --- atils/tests/test_yaml.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/atils/tests/test_yaml.py b/atils/tests/test_yaml.py index 268567ad..29716f6e 100644 --- a/atils/tests/test_yaml.py +++ b/atils/tests/test_yaml.py @@ -6,22 +6,22 @@ @pytest.fixture def full_kubeconfig(): - return "/Users/ahilt/PersonalMonorepo/atils/tests/files/yaml/full_kubeconfig_example.yaml" + return "tests/files/yaml/full_kubeconfig_example.yaml" @pytest.fixture def dev_kubeconfig(): - return "/Users/ahilt/PersonalMonorepo/atils/tests/files/yaml/dev_kubeconfig_example.yaml" + return "tests/files/yaml/dev_kubeconfig_example.yaml" @pytest.fixture def combined_kubeconfig(): - return "/Users/ahilt/PersonalMonorepo/atils/tests/files/yaml/merged_kubeconfig_example.yaml" + return "tests/files/yaml/merged_kubeconfig_example.yaml" @pytest.fixture def no_dev_kubeconfig(): - return "/Users/ahilt/PersonalMonorepo/atils/tests/files/yaml/no_dev_kubeconfig_example.yaml" + return "tests/files/yaml/no_dev_kubeconfig_example.yaml" def test_comparison_function_equal(full_kubeconfig):