From 4dcc8e6afe8f3927039eb3495327e4a0ce56e96d Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Sat, 21 Jun 2014 00:48:59 +0200 Subject: [PATCH] We should never include an actual config file in our repository --- .gitignore | 2 +- GUI.cfg => GUI.cfg.sample | 0 tests/test_gui.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename GUI.cfg => GUI.cfg.sample (100%) diff --git a/.gitignore b/.gitignore index 509379f..e568415 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ #may contain authentication information sources.cfg #Another of our config files -GUI/gui.cfg +GUI.cfg #THINGS WE WOULD NEVER EVER WANT! #ignore thumbnails created by windows diff --git a/GUI.cfg b/GUI.cfg.sample similarity index 100% rename from GUI.cfg rename to GUI.cfg.sample diff --git a/tests/test_gui.py b/tests/test_gui.py index e5e174c..970f288 100644 --- a/tests/test_gui.py +++ b/tests/test_gui.py @@ -7,7 +7,7 @@ class TestGUI(unittest.TestCase): pass def test_empty_attributes(self): - self.test_gui = gui.GUI(None, '../GUI/GUI.cfg', in_source=False) + self.test_gui = gui.GUI(None, '../GUI.cfg.sample', in_source=False) self.test_gui.window.after(9, self.test_gui.prepare_search) self.test_gui.window.after(11, self.test_gui.window.destroy) self.test_gui.run()