Skip to content

Commit fabe68c

Browse files
committed
Move build below test to follow the natural order of developing software
1 parent d0e8672 commit fabe68c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

__main__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ def install(target: pathlib.Path) -> None:
2424

2525

2626
@passthrough_command
27-
def build() -> None:
27+
def test() -> None:
2828
del sys.argv[1]
29-
runpy.run_module('coherent.build', run_name='__main__')
29+
runpy.run_module('coherent.test', run_name='__main__')
3030

3131

3232
@passthrough_command
33-
def test() -> None:
33+
def build() -> None:
3434
del sys.argv[1]
35-
runpy.run_module('coherent.test', run_name='__main__')
35+
runpy.run_module('coherent.build', run_name='__main__')
3636

3737

3838
if __name__ == '__main__':

0 commit comments

Comments
 (0)