This file contains hidden or 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
    
  
  
    
  | map $http_upgrade $connection_upgrade { | |
| default upgrade; | |
| '' close; | |
| } | |
| server { | |
| listen 80; | |
| location /streaming/ { | |
| proxy_pass http://localhost:8211/streaming/; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | const { Octokit, App } = require("octokit"); | |
| const { throttling } = require("@octokit/plugin-throttling"); | |
| var argv = require("yargs/yargs")(process.argv.slice(2)) | |
| .usage('Usage: $0 token org_name repo_name') | |
| .demandCommand(2) | |
| .argv; | |
| const ThrottledOctokit = Octokit.plugin(throttling); | 
  
    
      This file contains hidden or 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
    
  
  
    
  | from pyLC3 import LC3UnitTestCase | |
| import unittest | |
| import xmlrunner | |
| import six | |
| class LC3UnitTestCaseTest(LC3UnitTestCase): | |
| def loadCodeFile(self, filename): | |
| with open(filename, "r") as f: | |
| self.state.loadCode(f.read()) |