Skip to content

Commit

Permalink
Feat/build tooling (#59)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
AidanHilt authored Mar 11, 2024
1 parent 20fa42e commit 2dd4655
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions atils/tests/test_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2dd4655

Please sign in to comment.