A test-driven teaching environment for programmers.
This is a work in progress. There are videos about it on:
https://www.youtube.com/@tangentstream
If your goal is to work through a coding challenge, detailed setup instructions are here:
There are two main ways to install Tanco:
1. From PyPI (Recommended for users):
If you just want to use Tanco to follow a course or run tests, you can install it directly from the Python Package Index (PyPI):
pip install tancoYou can find the package details on PyPI.
2. Editable Install (Recommended for developers):
If you plan to contribute to Tanco development or want the latest changes, clone the repository and install it in editable mode:
git clone https://github.com/tangentcode/tanco.git
cd tanco
pip install -e .This command links the installed package to your local source code, so any changes you make are immediately effective.
tanco login
cd /path/to/your/project
tanco init
tanco test # keep doing this until it passes
git commit # once the test passes
tanco next # to fetch the next testTanco (both the client and server) creates a sqlite database in ~/.tanco.sdb.
You can override this location by setting the TANCO_SDB environment
variable to a different path.
You can inspect the database with the sqlite3 command-line tool.
sqlite3 ~/.tanco.sdb
.schemaFirst set up a private key, then run quart or hypercorn.
The tanco login command lets the command-line client
log into the server in a multi-user setup.
In this setup, the server uses a private key to sign a json web token.
To set up the private key, do this:
cd /path/to/tanco-server
ssh-keygen -t rsa -b 4096 -m PEM -f tanco_auth_key.pemThis will also create a public key in tanco_auth_key.pem.pub.
This is not currently used for anything.
You can run the development server like so:
bash QUART_APP=tanco.app:app quart run # --reload
Or (on platforms that support it) use hypercorn:
hypercorn tanco.app:app # --reloadTanco is primarily used via its command-line interface.
Running Local Tests from Org Files:
Tanco can now run tests defined directly within an .org file, independent of the server. This is useful for local development, testing, and creating new challenges.
Use the run command with the --tests flag:
tanco run --tests path/to/your/tests.org -c 'your_command'--tests path/to/your/tests.org(or-t): Specifies the org file containing the test definitions.-c 'command': Run the command via the shell. For example:tanco run -t tests.org -c 'node your_script.js' tanco run -t tests.org -c 'python your_script.py arg1'
- For direct executables, use
--to separate program args:tanco run -t tests.org -- ./your_program arg1 arg2
Filtering by test name:
Both test and run accept test names to run only specific tests:
tanco test -t tests.org foo bar
tanco run -t tests.org foo bar -c 'python script.py'
tanco run -t tests.org foo bar -- ./my_programVerbose Output:
You can add the -v or --verbose flag to the run command to print the configuration Tanco is using before executing the tests. This is helpful for debugging paths and arguments:
tanco run -v -t tests.org -c 'python script.py'