This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Python Hello World Test | |
ref: python_notebook_test | |
icon: "/demo/img/hello_world_cover.png" | |
description: Deploys SQL and Jupyter setup for interaction | |
version: 0.0.1 | |
tools: | |
- ref: python | |
- ref: uv | |
vars: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Bare", | |
"ref": "bare", | |
"description": "Placeholder", | |
"version": "0.0.1", | |
"tools": [{ "ref": "nodejs" }], | |
"apps": [ | |
{ | |
"name": "Test app", | |
"ref": "test_app", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tests\AppBundle\Functional\Process; | |
/* The kernel test case we'll be using */ | |
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | |
use AppBundle\Entity\Post; | |
use AppBundle\Repository\PostRepository; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
protected function configureDatagridFilters(DatagridMapper $datagridMapper) | |
{ | |
/* Get the filtered tags */ | |
$repo = $this->getConfigurationPool()->getContainer()->get('repository.tag'); | |
$temp = $repo->findByType('job-role---buy-side'); | |
/* Work the results in to a choice compatible array */ | |
$choices = array(); | |
foreach ($temp as $entry) { $choices[$entry->getTitle()] = $entry->getTitle(); } |