loki
loki

Reputation: 2311

Build tool for both JavaScript and Python

I'm about to create a web app written in python on the backend and javascript on the frontend. I'm looking for a tool like Ant that lets you run some tests(for both python and js) and if they pass then do the next task, like minify js files or generate documentation.

I've not decided the js test framework yet. It would be the one that best fits with the build tool. Probably one accessible from the command prompt.

I'm aware that nose lets you automate your tests, but I need to do it for both languages and then do the rest.

Thanks.

Upvotes: 1

Views: 441

Answers (1)

sean
sean

Reputation: 3985

Using a system such as Buildout along with a look at JS Minify In Buildout looks like that is the way to go.

I have used Buildout in-conjunction with Hudson to perform my automated builds and deployments in the past.

Upvotes: 1

Related Questions